python(matplotlib8)——图中图(在figure中画多个坐标图),次坐标(两个y轴)
生活随笔
收集整理的這篇文章主要介紹了
python(matplotlib8)——图中图(在figure中画多个坐标图),次坐标(两个y轴)
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
文章目錄
- 前言
- 圖中圖
- 次坐標(兩個y軸)
前言
來自 莫煩python的總結(jié)。
圖中圖
left,bottom,width,height = 百分比
fig = plt.figure() x = [1,2,3,4,5,6,7] y = [1,2,3,9,5,6,7] left,bottom,width,height = 0.1,0.1,0.8,0.8 #figure的百分比 ax1 = fig.add_axes([left,bottom,width,height]) ax1.plot(x,y,'r') ax1.set_xlabel('x') ax1.set_ylabel('y') ax1.set_title('one') # # left,bottom,width,height = 0.2,0.6,0.25,0.25 #figure的百分比 ax2 = fig.add_axes([left,bottom,width,height]) ax2.plot(x,y,'r') ax2.set_xlabel('x') ax2.set_ylabel('y') ax2.set_title('two')plt.axes([0.6,0.2,0.25,0.25]) # 對應于上面的 left,bottom,width,height plt.plot(x,y,'g') plt.xlabel('x') plt.ylabel('y') plt.title('three')次坐標(兩個y軸)
x = np.arange(0,10,0.1) y1 = 0.5*x**2 y2 = -1*y1 fig,ax1 = plt.subplots() ax2 = ax1.twinx() # 鏡像對稱 生成ax2次坐標; ax1.plot(x,y1,'g-') ax2.plot(x,y2,'b-')ax1.set_xlabel('X data') ax1.set_ylabel('Y1',color = 'g') ax2.set_ylabel('Y2',color = 'b')總結(jié)
以上是生活随笔為你收集整理的python(matplotlib8)——图中图(在figure中画多个坐标图),次坐标(两个y轴)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python(matplotlib7)—
- 下一篇: python(matplotlib9)—