[scikit-learn] Scikit Learn Random Classifier - TPR and FPR plotted on matplotlib

Debabrata Ghosh mailfordebu at gmail.com
Wed Dec 14 03:13:29 EST 2016


Hi All,
                      I have run scikit-learn Random Forest Classifier
algorithm against a dataset and here is my TPR and FPR against various
thresholds:

[image: Inline image 1]

Further I have plotted the above values in matplotlib and am getting a very
low AUC. Here is my matplotlib code. Can I understand the interpretation of
the graph from you please.Is my model Ok or is there something wrong ?
Appreciate for a quick response please.

import matplotlib.pyplot as plt
import numpy as np
from sklearn import metrics
plt.title('Receiver Operating Characteristic')
plt.ylabel('True Positive Rate')
plt.xlabel('False Positive Rate')
fpr =
[0.0002337345394340,0.0001924870472260,0.0001626973851550,0.0000950977673794,

0.0000721826427097,0.0000538505429739,0.0000389557119386,0.0000263523933702,
       0.0000137490748018]

tpr = [0.19673638244100000000,0.18984141576600000000,0.18122270742400000000,
       0.17055510860800000000,0.16434892541100000000,0.15789473684200000000,
       0.15134451850100000000,0.14410480349300000000,0.13238336014700000000]

roc_auc = metrics.auc(fpr, tpr)

plt.plot([0, 1], [0, 1],'r--')
plt.plot(fpr, tpr, 'bo-', label = 'AUC = %0.9f' % roc_auc)
plt.legend(loc = 'lower right')

plt.show()

[image: Inline image 2]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/scikit-learn/attachments/20161214/5d80c002/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 18986 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/scikit-learn/attachments/20161214/5d80c002/attachment-0002.png>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 8894 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/scikit-learn/attachments/20161214/5d80c002/attachment-0003.png>


More information about the scikit-learn mailing list