R的插入符号显然支持广泛的模型,只需更改method
即可访问:
fit <- caret::train(y = as.vector(y),
x = x,
method = BstLm,
trControl = ctrl,
preProc = c("center", "scale"))
以下插入符号列表中的大多数模型在Python中是否可用(通过scikit-learn或其他方式)?
https://topepo.github.io/caret/available-models.html
例如,我想在Python中实现Boosted Linear Model method ='BstLm',但找不到任何方法,当然不是简单地在插入符号中更改一个变量的方法。