我想使用pROC包計算不同的分類指標(靈敏度,特異性)。對於這一點,我可以使用coords功能pROC包爲: # Load library
library(pROC)
# Load data
data(aSAH)
#Convert Good and Poor to 1 and 0
aSAH$outcome <- ifelse(aSAH$outcome=="Good", 1, 0)
#
正從glmnet我的預測後,我試圖用「預測」功能,在「ROCR」軟件包,以獲取TPR無效,FPR等,但得到這個錯誤: pred <- prediction(pred_glmnet_s5_3class, y)
Error in prediction(pred_glmnet_s5_3class, y) :
Format of predictions is invalid.
我輸出glmnet預