预测()函数的类型参数
类型="概率"预测函数中的参数吗? 我是我的代码示例:
rf <- randomForest( Creditability ~. , data=train)
rf2 <- randomForest( Creditability ~. , data=train2)
prediction <- predict(rf, test)
prob_prediction <- predict(rf,test,type="prob")
prediction2 <- predict(rf2, test2)
答案 0 :(得分:0)
根据文件(http://ugrad.stat.ubc.ca/R/library/randomForest/html/predict.randomForest.html):
类型:响应之一,概率。或投票,表明输出的类型: 预测值,类概率矩阵或投票矩阵 计数。允许使用class,但会自动转换为“response”, 为了向后兼容。