R でパッケージを使用して、pROC
感度、特異性、およびしきい値レベルを計算しようとしています。サンプルデータはこちら
library(pROC)
x<-sample(0:1,7974,replace=T)
y<-sample(0:16049.2,7974,replace=T)
myroc<-roc(x,y)
coords(myroc, "best", ret=c("threshold", "sensitivity", "specificity"))
Error in UseMethod("coords") :
no applicable method for 'coords' applied to an object of class "c('double', 'numeric')"
このエラーが発生する理由と修正方法を教えてくれる人はいますか?
ありがとうございました