resample | R Documentation |
Create resamples of your data, e.g. for model building or validation.
"KFold" creates stratified folds, , "StratSub" creates stratified subsamples,
"Bootstrap" gives the standard bootstrap, i.e. random sampling with replacement,
while "StratBoot" uses StratSub and then randomly duplicates some of the training cases to
reach original length of input (default) or length defined by target_length
.
resample(x, parameters = setup_Resampler(), verbosity = 1L)
x |
Vector or data.frame: Usually the outcome; |
parameters |
Resampler object created by setup_Resampler. |
verbosity |
Integer: Verbosity level. |
Note that option 'KFold' may result in resamples of slightly different length. Avoid all operations which rely on equal-length vectors. For example, you can't place resamples in a data.frame, but must use a list instead.
Resampler
object.
EDG
## Not run:
y <- rnorm(200)
# 10-fold (stratified)
res <- resample(y, 10, "KFold")
# 25 stratified subsamples
res <- resample(y, 25, "StratSub")
# 100 stratified bootstraps
res <- resample(y, 100, "StratBoot")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.