The base MLControl
constructor initializes a set of control parameters
that are common to all resampling methods.
BootControl
constructs an MLControl
object for simple bootstrap
resampling in which models are fit with bootstrap resampled training sets and
used to predict the full data set.
CVControl
constructs an MLControl
object for repeated K-fold
cross-validation. In this procedure, the full data set is repeatedly
partitioned into K-folds. Within a partitioning, prediction is performed on
each of the K folds with models fit on all remaining folds.
OOBControl
constructs an MLControl
object for out-of-bootstrap
resampling in which models are fit with bootstrap resampled training sets and
used to predict the unsampled cases.
SplitControl
constructs an MLControl
object for splitting data
into a seperate trianing and test set.
TrainControl
constructs an MLControl
object for training and
performance evaluation to be performed on the same training set.