我對德國信用卡數據進行了分析,發現我沒有糾正錯誤,因爲我已經安裝了ROCR套餐。下面是使用ROCR代碼:現在使用ROCR套餐困難
#load library
library(ROCR)
#score test data set
test$score <- predict(m,type='response',test)
pred <- prediction(test$score,test$good_bad)
perf <- performance(pred,"tpr","fpr")
plot(perf)
,運行pred
後,我收到以下錯誤:
>pred <- prediction(test$score,test$Good_Bad)
Error: could not find function "prediction".
,當我試圖執行以下行也會發生這種情況:
>perf <- performance(pred,"tpr","fpr")
Error: could not find function "performance"
我看不出有什麼理由爲什麼你應該得到這些錯誤。包是否成功加載? – Thomas