您好,登錄后才能下訂單哦!
這篇文章主要介紹了Python中matplotlib如何繪制雙Y軸曲線圖,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
雙X軸的
可以理解為共享y軸
ax1=ax.twiny() ax1=plt.twiny()
雙Y軸的
可以理解為共享x軸
ax1=ax.twinx() ax1=plt.twinx()
自動(dòng)生成一個(gè)例子
x = np.arange(0., np.e, 0.01) y1 = np.exp(-x) y2 = np.log(x) fig = plt.figure() ax1 = fig.add_subplot(111) ax1.plot(x, y1) ax1.set_ylabel('Y values for exp(-x)') ax1.set_title("Double Y axis") ax2 = ax1.twinx() # this is the important function ax2.plot(x, y2, 'r') ax2.set_xlim([0, np.e]) ax2.set_ylabel('Y values for ln(x)') ax2.set_xlabel('Same X for both exp(-x) and ln(x)') plt.show()
例子:畫了一個(gè)雙y軸坐標(biāo)的圖表
# -*- coding: utf-8 -*- #調(diào)用包 import pandas as pd import numpy as np import matplotlib.pyplot as plt #讀取文件 io=r'E:\工作\專項(xiàng)\白騎士數(shù)據(jù)驗(yàn)證\白騎士數(shù)據(jù)匯總表.xlsx' yinka=pd.read_excel(io,sheet_name='YINKA_sample') bqs=pd.read_excel(io,sheet_name='BQS_result') yinka_bqs=pd.merge(yinka,bqs,left_on='no',right_on='no',how='inner') #繪圖 fig,ax=plt.subplots(1,1,figsize=(20, 300)) ax.grid() #畫網(wǎng)格 x=total.index-1 #為什么+1,因?yàn)閷?duì)不齊,所以使用時(shí)根據(jù)情況編寫 y=total['var1'] ax.plot(x,y,'k--o',alpha=0.5) #畫折線圖 ax.set_xlim([0,16]) #設(shè)置x軸的取值范圍 這個(gè)可以讓x軸與y軸的起點(diǎn)一致 ax.set_xticks(np.arange(0,16)) #設(shè)置x軸的刻度范圍 ax.set_xticklabels(np.arange(0,16),rotation=30) #設(shè)置x軸上的刻度 ax.set_ylim([0,1800]) #同理y軸數(shù)值范圍 ax.set_yticks(range(0,1800,300))#設(shè)置y軸的刻度范圍 ax.set_yticklabels(range(0,1800,300))#設(shè)置y軸上的刻度 ax.legend(loc='upper left') #設(shè)置ax子圖的圖例(legend) #新知識(shí)點(diǎn) for a,b in zip(x,y): #設(shè)置注釋 zip函數(shù)是對(duì)應(yīng)關(guān)系 ax.text(a,b,b,ha='center',va='bottom',fontsize=15) #重點(diǎn) ax1=ax.twinx() #這個(gè)是能夠?qū)崿F(xiàn)雙y軸的重點(diǎn),共享x軸;還有一種是雙x軸的圖表?yè)Q成ax.twiny() y1=total[['adopt','reject']] y1.plot.bar(ax=ax1,alpha=0.5) #這個(gè)是matplotlib中條形圖的繪制方法,如果使用seaborn繪制方法使用sns.barplot()函數(shù),需要調(diào)整很多細(xì)節(jié) #這里只設(shè)置了y軸的刻度,x軸的刻度設(shè)置了一下偶爾會(huì)出現(xiàn)失敗,值得注意的是要將數(shù)據(jù)對(duì)齊 ax1.set_ylim([0,1800]) ax1.set_yticks(range(0,1800,300)) ax1.set_yticklabels(range(0,1800,300)) for e,f,w in zip(data_.index,data_[0],data_[1]): ax1.text(e-1,f,f,ha='center',va='bottom',fontsize=10,color='b') ax1.text(e-1,w,w,ha='center',va='bottom',fontsize=10,color='g') ax1.legend(loc='best') plt.show() #養(yǎng)成習(xí)慣這個(gè)最好寫一下# #保存圖片 plt.savefig('path') #圖表輸出到本地
結(jié)果顯示:
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Python中matplotlib如何繪制雙Y軸曲線圖”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。