【发布时间】:2015-09-13 04:08:02
【问题描述】:
我正在尝试使用 seaborn (python) 绘制 ROC 曲线。
使用 matplotlib 我只需使用函数plot:
plt.plot(one_minus_specificity, sensitivity, 'bs--')
其中one_minus_specificity 和sensitivity 是两个配对值列表。
seaborn 中是否有简单的绘图功能对应物?我查看了图库,但没有找到任何简单的方法。
【问题讨论】:
标签: python matplotlib plot seaborn roc