randomForest
does). Creates a learner
object, which can be used like any other learner object.
Models can easily be accessed via
getBaggingModels
.makeBaggingWrapper(learner, bag.iters = 10L,
bag.replace = TRUE, bag.size, bag.feats = 1)
Learner
].Prediction works as follows: For classification we do majority voting to create a discrete label and probabilites are predicted by considering the proportions of all predicted labels. For regression the mean value accross predictions is computed. Prediction of local standard error for regression is a current TODO and currently not implemented.