Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在阅读Journal of Statistical Software链接caret上R 包的论文,在第15-16 页,作者介绍了计算ROC 和AUC 的使用。但是,从 5.13-037 版本开始,这些功能不再可用(请参见此处)。我认为它们是方便的功能,但不知道为什么它们被弃用......关于 ROC 和 AUC 的替代方法/功能有什么建议吗?谢谢!
caret
您可以使用pROC包例如:
pROC
library(pROC) data(aSAH) # Basic example with 2 roc objects roc1 <- roc(aSAH$outcome, aSAH$s100b)