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.
我正在使用pROC 包使用以下函数绘制接收器操作曲线:
plot(roc(true, predictor))
我还想突出显示与特定 p 值相对应的曲线上的点。假设我知道哪些预测值对应于我的特定 p 值。我怎样才能做到这一点?
我假设您的意思是对应于特定阈值的预测值,而不是 p 值。在这种情况下,使用 pROC 您应该使用print.thres参数。例如,如果你想突出2.2你的预测器的阈值,你可以写:
print.thres
2.2
my.threshold <- 2.2 plot(roc(true, predictor), print.thres = my.threshold)
查看?plot.roc更多选项。
?plot.roc