How to draw ROC curve from true positive rate and false positive rate
6 ビュー (過去 30 日間)
古いコメントを表示
I have calculated the True positive rate and false positive rate.But from this how to calculate the labels and scores in perfcurve()in matlab.
or else from True positive rate and false positive rate,how to draw the ROC curve
0 件のコメント
回答 (2 件)
KALYAN ACHARJYA
2017 年 6 月 2 日
編集済み: KALYAN ACHARJYA
2017 年 6 月 2 日
Dear,
Just calculate the sensitivity and specificity by using true positive, true negative, false positive and false negative values. The formula available in wiki just check it out.
TPR(True Positive Rate)=Sensitivity
FPR(False Negative Rate)=1-Specificity
https://en.wikipedia.org/wiki/Sensitivity_and_specificity
No to draw ROC curve use matlab line plot(1-specificity,sensitivity,'o-');
Thats the way..Still, you need help let me know here...
2 件のコメント
Ahsan Saleem
2018 年 3 月 17 日
hi,
plot(1-specificity,sensitivity,'o-'); only draws a point how to draw ROC curve ?
Thank you.
Thorsten
2016 年 7 月 11 日
plot(FPR, TPR)
1 件のコメント
upasana verma
2017 年 2 月 22 日
plot(FPR,TPR) won't give exact curve. Not look like as ROC curve.its like a simple curve. Anyone please tell the another solution.I am also stuck over there.How to plot a ROC with TPR and FPR.
参考
カテゴリ
Help Center および File Exchange で Detection についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!