随机森林模型问题

时间:2019-02-11 05:18:37

标签: r random-forest

我在R中运行了随机森林模型,现在我将其称为预测我的数据集

predict.rf<-predict(layers.stack,random.forest, na.rm=T, type='response')

但是它带有一个错误,如下所示:

  

UseMethod(“ predict”)中的错误:没有适用于'predict'的方法应用于类“ c('randomForest.formula','randomForest')“的对象

有人知道如何解决此错误吗?

致谢

1 个答案:

答案 0 :(得分:1)

您似乎正在使用两种不同的R脚本-一种用于训练,另一种用于预测。此错误意味着您的预测R脚本不了解{"username":"hardik.pathar@ia.ooo","password":"Drc@1234","devicetoken":"abc123"} 类。

您只需将“ randomForest”库导入到预测R脚本中即可解决此问题:

randomForest(.formula)