利用python畫出AUC曲線的實(shí)例
以load_breast_cancer數(shù)據(jù)集為例,模型細(xì)節(jié)不重要,重點(diǎn)是畫AUC的代碼。
直接上代碼:
from sklearn.datasets import load_breast_cancerfrom sklearn import metricsfrom sklearn.ensemble import RandomForestClassifierfrom sklearn.model_selection import train_test_splitimport pylab as pltimport warnings;warnings.filterwarnings(’ignore’)dataset = load_breast_cancer()data = dataset.datatarget = dataset.targetX_train,X_test,y_train,y_test = train_test_split(data,target,test_size=0.2)rf = RandomForestClassifier(n_estimators=5)rf.fit(X_train,y_train)pred = rf.predict_proba(X_test)[:,1]#############畫圖部分fpr, tpr, threshold = metrics.roc_curve(y_test, pred)roc_auc = metrics.auc(fpr, tpr)plt.figure(figsize=(6,6))plt.title(’Validation ROC’)plt.plot(fpr, tpr, ’b’, label = ’Val AUC = %0.3f’ % roc_auc)plt.legend(loc = ’lower right’)plt.plot([0, 1], [0, 1],’r--’)plt.xlim([0, 1])plt.ylim([0, 1])plt.ylabel(’True Positive Rate’)plt.xlabel(’False Positive Rate’)plt.show()
補(bǔ)充拓展:Python機(jī)器學(xué)習(xí)中的roc_auc曲線繪制
廢話不多說,直接上代碼
from sklearn.metrics import roc_curve,aucfrom sklearn.ensemble import RandomForestClassifierimport matplotlib.pyplot as pltfrom sklearn.model_selection import train_test_splitx_train,y_train,x_test,y_test=train_test_split(x,y,test_size=0.2)rf=RandomForestClassifier()rf.fit(x_train,y_train)rf.score(x_train,y_train)print(’trainscore:’+str(rfbest.score(x_train,y_train)))print(’testscore:’+str(rfbest.score(x_test,y_test)))y_score=rfbest.fit(x_train,y_train).predict_proba(x_test) #descision_function()不可用print(type(y_score))fpr,tpr,threshold=roc_curve(y_test,y_score[:, 1])roc_auc=auc(fpr,tpr)plt.figure(figsize=(10,10))plt.plot(fpr, tpr, color=’darkorange’,lw=2, label=’ROC curve (area = %0.2f)’ % roc_auc) ###假正率為橫坐標(biāo),真正率為縱坐標(biāo)做曲線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 example’)plt.legend(loc='lower right')plt.show()
以上這篇利用python畫出AUC曲線的實(shí)例就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. Intellij IDEA官方最完美編程字體Mono使用2. springboot基于Redis發(fā)布訂閱集群下WebSocket的解決方案3. 關(guān)于探究python中sys.argv時(shí)遇到的問題詳解4. 基于android studio的layout的xml文件的創(chuàng)建方式5. CSS自定義滾動(dòng)條樣式案例詳解6. JS繪圖Flot如何實(shí)現(xiàn)動(dòng)態(tài)可刷新曲線圖7. IDEA項(xiàng)目的依賴(pom.xml文件)導(dǎo)入問題及解決8. python使用requests庫爬取拉勾網(wǎng)招聘信息的實(shí)現(xiàn)9. 使用ProcessBuilder調(diào)用外部命令,并返回大量結(jié)果10. Java發(fā)送http請(qǐng)求的示例(get與post方法請(qǐng)求)
