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)
Run the code above in your browser using DataLab