Sometimes I see functions with occult functions. If you call these functions, R
does not recognized them and throws an Error
.
I was reading the code for xgb.cv
function from xgboost
R package and realized that they use a function (generate.cv.folds
) and it seems that it is not "available". So I was wondering how they do it, and if is that possible to access this specific function.
The error message is the following:
#Error: object 'generate.cv.folds' not found
Thank you.