我正在尝试使用两级因子分类变量进行线性回归:
train.control <- trainControl(method = "repeatedcv",
number = 5, repeats = 3)
# Train the model
model <- train(Classification ~., data = ds, method = "lm",
trControl = train.control)
错误:分类的模型类型错误
为什么会有这个错误?昨天我尝试做同样的事情,但没有任何错误。