take N objects of class caretList and concatenate them into a larger object of class caretList for future ensembling
Usage
# S3 method for class 'caretList'
c(...)
Value
a caretList
object
Examples
data(iris)
model_list1 <- caretList(Sepal.Width ~ .,
data = iris,
tuneList = list(
lm = caretModelSpec(method = "lm")
)
)
model_list2 <- caretList(Sepal.Width ~ .,
data = iris, tuneLength = 1L,
tuneList = list(
rf = caretModelSpec(method = "rf")
)
)
bigList <- c(model_list1, model_list2)