python绘制roc曲线图代码
时间: 2023-07-22 18:11:06 浏览: 155
基于Python绘制PR曲线与ROC曲线(源码+图片+说明文档).rar
5星 · 资源好评率100%
import matplotlib.pyplot as plt
from sklearn.metrics import roc_curve, auc
# 假设y_true是真实的标签,y_score是模型预测的分数
fpr, tpr, thresholds = roc_curve(y_true, y_score)
roc_auc = auc(fpr, tpr)
plt.figure()
plt.plot(fpr, tpr, color='darkorange', lw=2, label='ROC curve (area = %0.2f)' % roc_auc)
plt.plot([0, 1], [0, 1], color='navy', lw=2, linestyle='--')
plt.xlim([0.0, 1.0])
plt.ylim([0.0, 1.05])
plt.xlabel('False Positive Rate')
plt.ylabel('True Positive Rate')
plt.title('Receiver Operating Characteristic')
plt.legend(loc="lower right")
plt.show()
阅读全文