错误:所有参数的长度必须相同

时间:2020-04-04 14:11:21

标签: r error-handling logistic-regression naivebayes confusion-matrix

我收到错误消息

“所有参数的长度必须相同”

在创建用于Logistic回归和朴素贝叶斯分类的混淆矩阵时。

我已经检查了所有推荐的URL,但无法确定我的代码出了什么问题。

NaiveBayes.Status = naiveBayes(
    Train$Churn ~ Train$ContractRenewal + Train$DataPlan + Train$DayMins + Train$OverageFee + Train$RoamMins,
    data=Train, usekernel=T)
##Confusion Matrix - test data

p2 = predict(NaiveBayes.Status, newdata=Test, type="raw")
table(Test$Churn, p2)

0 个答案:

没有答案