python绘制敏感性和特异性曲线(交叉)

示例

python绘制敏感性和特异性曲线(交叉)_第1张图片

代码如下

test_fpr, test_tpr, test_thresholds = roc_curve(y_test_two, dataset_blend_test_pred, pos_label=1)
test_roc_auc = auc(test_fpr, test_tpr)
plt.plot(test_thresholds, 1-test_fpr, label='specificity')
plt.plot(test_thresholds, test_tpr, label='sensitivity')
plt.xlim([0, 1])
plt.ylim([0, 1])
plt.ylabel('Classification Proportion')
plt.xlabel('Cutoff')
plt.legend()
plt.savefig(temp_path + '敏感性特异性曲线.jpg')
plt.show()
plt.close()

 

你可能感兴趣的:(python,cutoff,python,cutoff)