library(caret)
data(iris)
train_control <- trainControl(method="repeatedcv", number=10, repeats=10)
model <- train(Sepal.Length~Sepal.Width+Petal.Length+Petal.Width, data=iris, trControl=train_control, method="lm")
我可以使用模型$ finalModel $ coefficients来获得最终选定模型的系数。有没有办法得到所有模型的系数?