Description Usage Arguments Details Value See Also Examples
View source: R/ResampleInstance.R
This class encapsulates training and test sets generated from the data set for a number of iterations. It mainly stores a set of integer vectors indicating the training and test examples for each iteration.
1 | makeResampleInstance(desc, task, size, coords, ...)
|
desc |
[ |
task |
[ |
size |
[ |
coords |
[ |
... |
[any] |
Object slots:
ResampleDesc
]See argument.
See argument.
integer
]List of of training indices for all iterations.
integer
]List of of test indices for all iterations.
factor
]Optional grouping of resampling iterations. This encodes whether specfic iterations 'belong together' (e.g. repeated CV), and it can later be used to aggregate performance values accordingly. Default is 'factor()'.
[ResampleInstance
].
Other resample: ResamplePrediction
,
ResampleResult
, addRRMeasure
,
getRRPredictionList
,
getRRPredictions
,
getRRTaskDescription
,
getRRTaskDesc
,
makeResampleDesc
, resample
1 2 3 4 5 6 7 | rdesc = makeResampleDesc("Bootstrap", iters = 10)
rin = makeResampleInstance(rdesc, task = iris.task)
rdesc = makeResampleDesc("CV", iters = 50)
rin = makeResampleInstance(rdesc, size = nrow(iris))
rin = makeResampleInstance("CV", iters = 10, task = iris.task)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.