| evaluate.list | R Documentation |
You can use function(model.list) or c(...)
to combine multiple objects generated by functions from this package.
## S3 method for class 'list' evaluate(x, ...) ## S3 method for class 'evaluate.train' c(...) ## S3 method for class 'list' varImp2(model, ...) ## S3 method for class 'varImp2' c(...) ## S3 method for class 'list' jackknife(model, ...) ## S3 method for class 'jackknife.train' c(...) ## S3 method for class 'list' confusionMatrix2(model, ...) ## S3 method for class 'list' ROCcurve(model, ...) ## S3 method for class 'ROCcurve' c(...) ## S3 method for class 'response.train' c(...)
x, model |
A list of models created by |
... |
For |
The output function(list(model1, model2)) is the same as c(function(model1), function(model2)).
But note that you can only concatenate objects obtained from models with different methods (e.g. 'rf','gbm', ...).
In contrast, using function(list(model1, model2)) will append '.1', '.2', etc
if a method is repeated in the models.
Optionally, you can furnish a named list, and the names will override the labels of the methods.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.