当我在重要性下面输入重要性命令时(model.rf
),出现此错误:
UseMethod(“ importance”)中的错误:没有将适用于'重要性'的适用方法应用于类“ c('randomForest.formula','randomForest')”的对象
如何解决这个错误?
最佳答案
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 )
首先将重要性转换为变量,然后将其打印出来。
关于r - 如何解决R中的重要性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39747142/