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.
我尝试在 matlab 中绘制一个漂亮的 ROC 图,但我不知道如何使用函数。任何人都可以帮助我输入参数吗?我已经确定了 TP、FP、TN、FN --> TPR 和 FPR 是已知的。我不明白如何使用函数plotroc。
该plotroc函数会为您计算 TPR 和 FPR,因此您必须将原始数据 ( targets, outputs) 提供给它,您最初用于确定 TP、FP、TN 和 FN。
plotroc
targets
outputs
如果您已经有了 TPR 和 FPR,请使用经典的二维线图,例如plot(FPR, TPR)
plot(FPR, TPR)