在本章中,我們將學(xué)習(xí)如何在同一畫(huà)布上創(chuàng)建多個(gè)子圖。
subplot()函數(shù)返回給定網(wǎng)格位置的axes對(duì)象。此函數(shù)的簽名是 -
# Filename : example.py # Copyright : 2020 By Nhooo # Author by : www.soo66.com # Date : 2020-08-08 plt.subplot(subplot(nrows, ncols, index)
在當(dāng)前圖中,該函數(shù)創(chuàng)建并返回一個(gè)Axes對(duì)象,在ncolsaxes的nrows網(wǎng)格的位置索引處。索引從1到nrows * ncols,以行主順序遞增。如果nrows,ncols和index都小于10。索引也可以作為單個(gè),連接,三個(gè)數(shù)字給出。
例如,subplot(2, 3, 3)和subplot(233)都在當(dāng)前圖形的右上角創(chuàng)建一個(gè)軸,占據(jù)圖形高度的一半和圖形寬度的三分之一。
創(chuàng)建子圖將刪除任何與其重疊的預(yù)先存在的子圖,而不是共享邊界。
參考以下示例代碼:
# Filename : example.py # Copyright : 2020 By Nhooo # Author by : www.soo66.com # Date : 2020-08-08 #! /usr/bin/env python #coding=utf-8 import matplotlib.pyplot as plt # 顯示中文設(shè)置... plt.rcParams['font.sans-serif'] = ['SimHei'] # 步驟一(替換sans-serif字體) plt.rcParams['axes.unicode_minus'] = False # 步驟二(解決坐標(biāo)軸負(fù)數(shù)的負(fù)號(hào)顯示問(wèn)題)原文出自【立地貨】,商業(yè)轉(zhuǎn)載請(qǐng)聯(lián)系作者獲得授權(quán),非商業(yè)請(qǐng)保留原文鏈接 # plot a line, implicitly creating a subplot(111) plt.plot([1,2,3]) # now create a subplot which represents the top plot of a grid with 2 rows and 1 column. #Since this subplot will overlap the first, the plot (and its axes) previously created, will be removed plt.subplot(211) plt.plot(range(12)) plt.subplot(212, facecolor='y') # creates 2nd subplot with yellow background plt.plot(range(12)) plt.show()
執(zhí)行上面示例代碼,得到以下結(jié)果:
figure類的add_subplot()函數(shù)不會(huì)覆蓋現(xiàn)有的圖,參考以下代碼 -
# Filename : example.py # Copyright : 2020 By Nhooo # Author by : www.soo66.com # Date : 2020-08-08 #! /usr/bin/env python #coding=utf-8 import matplotlib.pyplot as plt # 顯示中文設(shè)置... plt.rcParams['font.sans-serif'] = ['SimHei'] # 步驟一(替換sans-serif字體) plt.rcParams['axes.unicode_minus'] = False # 步驟二(解決坐標(biāo)軸負(fù)數(shù)的負(fù)號(hào)顯示問(wèn)題) fig = plt.figure() ax1 = fig.add_subplot(111) ax1.plot([1,2,3]) ax2 = fig.add_subplot(221, facecolor='y') ax2.plot([1,2,3]) plt.show()
執(zhí)行上面示例代碼,得到以下結(jié)果:
可以通過(guò)在同一圖形畫(huà)布中添加另一個(gè)軸對(duì)象來(lái)在同一圖中添加插入圖。參考以下實(shí)現(xiàn)代碼 -
# Filename : example.py # Copyright : 2020 By Nhooo # Author by : www.soo66.com # Date : 2020-08-08 #! /usr/bin/env python #coding=utf-8 import matplotlib.pyplot as plt import numpy as np import math # 顯示中文設(shè)置... plt.rcParams['font.sans-serif'] = ['SimHei'] # 步驟一(替換sans-serif字體) plt.rcParams['axes.unicode_minus'] = False # 步驟二(解決坐標(biāo)軸負(fù)數(shù)的負(fù)號(hào)顯示問(wèn)題) x = np.arange(0, math.pi*2, 0.05) fig=plt.figure() axes1 = fig.add_axes([0.1, 0.1, 0.8, 0.8]) # main axes axes2 = fig.add_axes([0.55, 0.55, 0.3, 0.3]) # inset axes y = np.sin(x) axes1.plot(x, y, 'b') axes2.plot(x,np.cos(x),'r') axes1.set_title('正弦') axes2.set_title("余弦") plt.show()
執(zhí)行上面示例代碼,得到以下結(jié)果: