随机森林类中的错误

时间:2015-09-04 07:15:24

标签: r random-forest

我将一组新数据输入随机森林预测模型并遇到此错误:

  

checkData(oldData,RET)出错:     新数据的类别与原始数据不匹配

以下是代码:

fit1 <- cforest((b == 'three')~   affect+ certain+ negemo+ future+swear+sad
            +negate+ppron+sexual+death + filler+leisure + conj+ funct + i
            +future + past + bio + body+cause + cogmech + death +
                    discrep + future +incl + motion + quant + sad + tentat + excl+insight +percept +posemo
            +ppron +quant + relativ + space + article + age + s_all + s_sad + gender 
            , data = trainset1, 
            controls=cforest_unbiased(ntree=500, mtry= 1))

testset2$pre_swl<-predict(fit1, newdata=testset2 , type='response')

训练集和测试集都是data.frame。

0 个答案:

没有答案