<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
matplotlib.pyplot api 繪製子圖
物件導向方式繪製子圖
matplotlib.gridspec.GridSpec繪製子圖
任意位置新增子圖
關於pyplot和物件導向兩種繪圖方式可參考之前文章:matplotlib.pyplot api verus matplotlib object-oriented
import matplotlib.pyplot as plt my_dpi=96 plt.figure(figsize=(480/my_dpi,480/my_dpi),dpi=my_dpi) plt.subplot(221) plt.plot([1,2,3]) plt.subplot(222) plt.bar([1,2,3],[4,5,6]) plt.title('plt.subplot(222)')#注意比較和上面物件導向方式的差異 plt.xlabel('set_xlabel') plt.ylabel('set_ylabel',fontsize=15,color='g')#設定y軸刻度標籤 plt.xlim(0,8)#設定x軸刻度範圍 plt.xticks(range(0,10,2)) # 設定x軸刻度間距 plt.tick_params(axis='x', labelsize=20, rotation=45)#x軸標籤旋轉、字號等 plt.subplot(223) plt.plot([1,2,3]) plt.subplot(224) plt.bar([1,2,3],[4,5,6]) plt.suptitle('matplotlib.pyplot api',color='r') fig.tight_layout(rect=(0,0,1,0.9)) plt.subplots_adjust(left=0.125, bottom=-0.51, right=1.3, top=0.88, wspace=0.2, hspace=0.2 ) #plt.tight_layout() plt.show()
import matplotlib.pyplot as plt my_dpi=96 fig, axs = plt.subplots(2,2,figsize=(480/my_dpi,480/my_dpi),dpi=my_dpi, sharex=False,#x軸刻度值共用開啟 sharey=False,#y軸刻度值共用關閉 ) #fig為matplotlib.figure.Figure物件 #axs為matplotlib.axes.Axes,把fig分成2x2的子圖 axs[0][0].plot([1,2,3]) axs[0][1].bar([1,2,3],[4,5,6]) axs[0][1].set(title='title')#設定axes及子圖示題 axs[0][1].set_xlabel('set_xlabel',fontsize=15,color='g')#設定x軸刻度標籤 axs[0][1].set_ylabel('set_ylabel',fontsize=15,color='g')#設定y軸刻度標籤 axs[0][1].set_xlim(0,8)#設定x軸刻度範圍 axs[0][1].set_xticks(range(0,10,2)) # 設定x軸刻度間距 axs[0][1].tick_params(axis='x', #可選'y','both' labelsize=20, rotation=45)#x軸標籤旋轉、字號等 axs[1][0].plot([1,2,3]) axs[1][1].bar([1,2,3],[4,5,6]) fig.suptitle('matplotlib object-oriented',color='r')#設定fig即整整張圖的標題 #修改子圖在整個figure中的位置(上下左右) plt.subplots_adjust(left=0.125, bottom=-0.61, right=1.3,#防止右邊子圖y軸標題與左邊子圖重疊 top=0.88, wspace=0.2, hspace=0.2 ) # 引數介紹 ''' ## The figure subplot parameters. All dimensions are a fraction of the figure width and height. #figure.subplot.left: 0.125 # the left side of the subplots of the figure #figure.subplot.right: 0.9 # the right side of the subplots of the figure #figure.subplot.bottom: 0.11 # the bottom of the subplots of the figure #figure.subplot.top: 0.88 # the top of the subplots of the figure #figure.subplot.wspace: 0.2 # the amount of width reserved for space between subplots, # expressed as a fraction of the average axis width #figure.subplot.hspace: 0.2 # the amount of height reserved for space between subplots, # expressed as a fraction of the average axis height ''' plt.show()
my_dpi=96 fig = plt.figure(figsize=(480/my_dpi,480/my_dpi),dpi=my_dpi) fig.add_subplot(221) plt.plot([1,2,3]) fig.add_subplot(222) plt.bar([1,2,3],[4,5,6]) plt.title('fig.add_subplot(222)') fig.add_subplot(223) plt.plot([1,2,3]) fig.add_subplot(224) plt.bar([1,2,3],[4,5,6]) plt.suptitle('matplotlib.pyplot api:add_subplot',color='r')
語法:matplotlib.gridspec.GridSpec(nrows, ncols, figure=None, left=None, bottom=None, right=None, top=None, wspace=None, hspace=None, width_ratios=None, height_ratios=None)
import matplotlib.pyplot as plt from matplotlib.gridspec import GridSpec fig = plt.figure(dpi=100, constrained_layout=True,#類似於tight_layout,使得各子圖之間的距離自動調整【類似excel中行寬根據內容自適應】 ) gs = GridSpec(3, 3, figure=fig)#GridSpec將fiure分為3行3列,每行三個axes,gs為一個matplotlib.gridspec.GridSpec物件,可靈活的切片figure ax1 = fig.add_subplot(gs[0, 0:1]) plt.plot([1,2,3]) ax2 = fig.add_subplot(gs[0, 1:3])#gs[0, 0:3]中0選取figure的第一行,0:3選取figure第二列和第三列 #ax3 = fig.add_subplot(gs[1, 0:2]) plt.subplot(gs[1, 0:2])#同樣可以使用基於pyplot api的方式 plt.scatter([1,2,3],[4,5,6],marker='*') ax4 = fig.add_subplot(gs[1:3, 2:3]) plt.bar([1,2,3],[4,5,6]) ax5 = fig.add_subplot(gs[2, 0:1]) ax6 = fig.add_subplot(gs[2, 1:2]) fig.suptitle("GridSpec",color='r') plt.show()
import matplotlib.pyplot as plt import matplotlib.gridspec as gridspec def format_axes(fig): for i, ax in enumerate(fig.axes): ax.text(0.5, 0.5, "ax%d" % (i+1), va="center", ha="center") ax.tick_params(labelbottom=False, labelleft=False) # 子圖中再繪製子圖 fig = plt.figure(dpi=100, constrained_layout=True, ) gs0 = GridSpec(1, 2, figure=fig)#將figure切片為1行2列的兩個子圖 gs00 = gridspec.GridSpecFromSubplotSpec(3, 3, subplot_spec=gs0[0])#將以上第一個子圖gs0[0]再次切片為3行3列的9個axes #gs0[0]子圖自由切片 ax1 = fig.add_subplot(gs00[:-1, :]) ax2 = fig.add_subplot(gs00[-1, :-1]) ax3 = fig.add_subplot(gs00[-1, -1]) gs01 = gs0[1].subgridspec(3, 3)#將以上第二個子圖gs0[1]再次切片為3行3列的axes #gs0[1]子圖自由切片 ax4 = fig.add_subplot(gs01[:, :-1]) ax5 = fig.add_subplot(gs01[:-1, -1]) ax6 = fig.add_subplot(gs01[-1, -1]) plt.suptitle("GridSpec Inside GridSpec",color='r') format_axes(fig) plt.show()
plt.subplots(1,2,dpi=100) plt.subplot(121) plt.plot([1,2,3]) plt.subplot(122) plt.plot([1,2,3]) plt.axes([0.7, 0.2, 0.15, 0.15], ## [left, bottom, width, height]四個引數(fractions of figure)可以非常靈活的調節子圖中子圖的位置 ) plt.bar([1,2,3],[1,2,3],color=['r','b','g']) plt.axes([0.2, 0.6, 0.15, 0.15], ) plt.bar([1,2,3],[1,2,3],color=['r','b','g'])
以上就是Python+matplotlib繪製多子圖的方法詳解的詳細內容,更多關於Python matplotlib多子圖的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45