caretEnsemble (version 2.0.1)

caretEnsemble: caretEnsemble: Make ensembles of caret models.

Description

Functions for creating ensembles of caret models: caretList and caretStack

Find a good linear combination of several classification or regression models, using linear regression.

Usage

caretEnsemble(all.models, ...)

Value

a caretEnsemble object

Arguments

all.models

an object of class caretList

...

additional arguments to pass to the optimization function

Details

Every model in the "library" must be a separate train object. For example, if you wish to combine a random forests with several different values of mtry, you must build a model for each value of mtry. If you use several values of mtry in one train model, (e.g. tuneGrid = expand.grid(.mtry=2:5)), caret will select the best value of mtry before we get a chance to include it in the ensemble. By default, RMSE is used to ensemble regression models, and AUC is used to ensemble Classification models. This function does not currently support multi-class problems

Examples

Run this code
if (FALSE) {
set.seed(42)
models <- caretList(iris[1:50,1:2], iris[1:50,3], methodList=c("glm", "lm"))
ens <- caretEnsemble(models)
summary(ens)
}

Run the code above in your browser using DataLab