我正在进行逻辑回归。在下面,您可以看到一些代码和收到的警告消息。我在这里看到过类似的问题,但是我发现的解决方案似乎不适用于我的问题。另外,我可以将其用于仅包含连续变量的模型,这是问题吗?我可以做一些积分并将ROC用作y的上限吗?
谢谢!
pred_with <- predict(mod_egen_control, newdata = testdata, type = "response")
pred_with <- prediction(mod_egen_control, testdata$vote)
Error in prediction(mod_egen_control, testdata$vote) : Number of cross-validation runs must be equal for predictions and labels.