how to plot roc curve.....
显示 更早的评论
TPR = [0.86666666667 0.79333333333 0.71333333333];
FPR = [0.06666666667 0.00000000000 0.00000000000];
figure('Name','ROC','NumberTitle','off'),plot(FPR,TPR);
xlabel('FP Fraction');
ylabel('TP Fraction');
grid

Helo every one...above is the code i have been used for plotting roc curve. TPR and FPR are the values obtained at 3 thresholds respectively. The plot which i have attached is obtained from the code. The curve looks strange..could anyone help me in justifying that it is a correct plot or not for the respective parameters?
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Agriculture 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
