日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python怎么画出圆润的曲线_利用python画出AUC曲线的实例

發布時間:2023/12/15 python 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python怎么画出圆润的曲线_利用python画出AUC曲线的实例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

以load_breast_cancer數據集為例,模型細節不重要,重點是畫AUC的代碼。

直接上代碼:

from sklearn.datasets import load_breast_cancer

from sklearn import metrics

from sklearn.ensemble import RandomForestClassifier

from sklearn.model_selection import train_test_split

import pylab as plt

import warnings;warnings.filterwarnings('ignore')

dataset = load_breast_cancer()

data = dataset.data

target = dataset.target

X_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()

補充拓展:Python機器學習中的roc_auc曲線繪制

廢話不多說,直接上代碼

from sklearn.metrics import roc_curve,auc

from sklearn.ensemble import RandomForestClassifier

import matplotlib.pyplot as plt

from sklearn.model_selection import train_test_split

x_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) ###假正率為橫坐標,真正率為縱坐標做曲線

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曲線的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持python博客。

總結

以上是生活随笔為你收集整理的python怎么画出圆润的曲线_利用python画出AUC曲线的实例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。