本文簡要介紹 python 語言中 matplotlib.figure.SubFigure.subplots
的用法。
-
向該圖中添加一組子圖。
這個實用程序包裝器可以方便地在單個調用中創建子圖的通用布局。
- 參數:
- nrows, ncols 整數,默認值:1
-
子圖網格的行/列數。
- sharex, sharey bool 或 {'none', 'all', 'row', 'col'},默認值:False
-
控製 x 軸 (
sharex
) 或 y 軸 (sharey
) 的共享:-
True 或 'all':x 軸或 y 軸將在所有子圖中共享。
-
錯誤或'none':每個子圖的 x 軸或 y 軸都是獨立的。
-
'row':每個子圖行將共享一個 x 軸或 y 軸。
-
'col':每個子圖列將共享一個 x 軸或 y 軸。
當子圖沿列具有共享 x 軸時,僅創建底部子圖的 x 刻度標簽。類似地,當子圖在一行上有一個共享的 y 軸時,隻會創建第一列子圖的 y 刻度標簽。要稍後打開其他子圖的刻度標簽,請使用
tick_params
。當子圖有一個具有單位的共享軸時,調用
Axis.set_units
將使用新單位更新每個軸。 -
- squeeze 布爾值,默認值:真
-
-
如果為 True,則從返回的 Axes 數組中擠出額外的維度:
-
如果僅構造一個子圖 (nrows=ncols=1),則生成的單個 Axes 對象作為標量返回。
-
對於 Nx1 或 1xM 子圖,返回的對象是 Axes 對象的一維 numpy 對象數組。
-
對於 NxM,N>1 和 M>1 的子圖作為二維數組返回。
-
-
如果為 False,則根本不進行任何壓縮:返回的 Axes 對象始終是包含 Axes 實例的 2D 數組,即使它最終是 1x1。
-
- width_ratios 長度類似數組
ncols
,可選 -
定義列的相對寬度。每列的相對寬度為
width_ratios[i] / sum(width_ratios)
。如果未給出,所有列將具有相同的寬度。相當於gridspec_kw={'width_ratios': [...]}
。 - height_ratios 長度類似數組
nrows
,可選 -
定義行的相對高度。每行的相對高度為
height_ratios[i] / sum(height_ratios)
。如果沒有給出,所有行將具有相同的高度。相當於gridspec_kw={'height_ratios': [...]}
。 - subplot_kw 字典,可選
-
帶有傳遞給
Figure.add_subplot
調用的關鍵字的字典,用於創建每個子圖。 - gridspec_kw 字典,可選
-
帶有傳遞給
GridSpec
構造函數的關鍵字的字典,用於創建放置子圖的網格。
- 返回:
例子
# First create some toy data: x = np.linspace(0, 2*np.pi, 400) y = np.sin(x**2) # Create a figure fig = plt.figure() # Create a subplot ax = fig.subplots() ax.plot(x, y) ax.set_title('Simple plot') # Create two subplots and unpack the output array immediately ax1, ax2 = fig.subplots(1, 2, sharey=True) ax1.plot(x, y) ax1.set_title('Sharing Y axis') ax2.scatter(x, y) # Create four polar Axes and access them through the returned array axes = fig.subplots(2, 2, subplot_kw=dict(projection='polar')) axes[0, 0].plot(x, y) axes[1, 1].scatter(x, y) # Share an X-axis with each column of subplots fig.subplots(2, 2, sharex='col') # Share a Y-axis with each row of subplots fig.subplots(2, 2, sharey='row') # Share both X- and Y-axes with all subplots fig.subplots(2, 2, sharex='all', sharey='all') # Note that this is the same as fig.subplots(2, 2, sharex=True, sharey=True)
用法
subplots(nrows=1, ncols=1, *, sharex=False, sharey=False, squeeze=True, width_ratios=None, height_ratios=None, subplot_kw=None, gridspec_kw=None)
相關用法
- Python matplotlib SubFigure.sticky_edges用法及代碼示例
- Python matplotlib SubFigure.add_axes用法及代碼示例
- Python matplotlib SubFigure.colorbar用法及代碼示例
- Python matplotlib SubFigure.add_gridspec用法及代碼示例
- Python matplotlib SubFigure.add_subplot用法及代碼示例
- Python matplotlib SubFigure.align_xlabels用法及代碼示例
- Python matplotlib SubFigure.align_ylabels用法及代碼示例
- Python matplotlib SubFigure.legend用法及代碼示例
- Python matplotlib SubFigure用法及代碼示例
- Python matplotlib SubplotSpec.subgridspec用法及代碼示例
- Python matplotlib Substitution用法及代碼示例
- Python matplotlib StarPolygonCollection.set_hatch用法及代碼示例
- Python matplotlib Sankey用法及代碼示例
- Python matplotlib Spines用法及代碼示例
- Python matplotlib SpanSelector用法及代碼示例
- Python matplotlib StarPolygonCollection.sticky_edges用法及代碼示例
- Python matplotlib StarPolygonCollection用法及代碼示例
- Python matplotlib axvspan用法及代碼示例
- Python matplotlib Axes.get_legend_handles_labels用法及代碼示例
- Python matplotlib AbstractMovieWriter用法及代碼示例
- Python matplotlib triplot用法及代碼示例
- Python matplotlib Axes.hist用法及代碼示例
- Python matplotlib boxplot用法及代碼示例
- Python matplotlib subplots用法及代碼示例
- Python matplotlib InsetPosition用法及代碼示例
注:本文由純淨天空篩選整理自skytowner.com大神的英文原創作品 matplotlib.figure.SubFigure.subplots。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。