我有以下R代码:
library(caret)
set.seed(825)
fitControl <- trainControl(method="repeatedvd", number=10, repeats=10)
logitfit1 <- train(y~x+y+z, data=train1, method="logreg", trControl = fitControl, verbose=FALSE)
基本上,它正在使用名为train1的数据集上的10倍交叉验证构建逻辑回归模型。但是我收到以下错误:
Error in names(resamples) <- gsub("^\\.", "", names(resamples)) :
attempt to set an attribute on NULL
为什么会这样?