View source: R/balanced_data.R
balancedCvFolds | R Documentation |
Create balanced folds for cross validation using stratified sampling
balancedCvFolds(..., nfolds = 10)
# deprecated, please use balancedCvFolds()
balanced.cv.folds(..., nfolds = 10)
... |
vectors representing data |
nfolds |
number of folds to be created |
list with given input, nfolds and result. The result is a list matching the input with foldid attributed to each position.
balancedCvFolds(seq(10), seq(11, 15), nfolds = 2)
# will give a warning
balancedCvFolds(seq(10), seq(11, 13), nfolds = 10)
balancedCvFolds(seq(100), seq(101, 133), nfolds = 10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.