当我输入重要性命令(model.rf
)时,我收到此错误:
UseMethod中的错误(“重要性”):对于“c('randomForest.formula','randomForest')”对象的“重要性”没有适用的方法“
如何解决此错误?
答案 0 :(得分:0)
output.forest <- randomForest(nativeSpeaker ~ age + shoeSize + score, data =
readingSkills,importance=TRUE)
#You can use like this - Solution
out.importance <- round(importance(output.forest), 2)
print(out.importance )
首先将重要性转换为变量,然后将其打印出来。