0
我熟悉的ROCR package,我用下面的代碼添加額外的懲罰每個FP
library(ROCR)
data(ROCR.simple)
pred <- prediction(ROCR.simple$predictions, ROCR.simple$labels)
perf <- performance(pred,"tpr","fpr")
plot(perf)
但要找到最適的截斷,我需要加罰10每個FP
,和100每個TN
我怎樣才能使用ROCR軟件包?