本文简要介绍 python 语言中 matplotlib.pyplot.subplot2grid
的用法。
-
在常规网格内的特定位置创建子图。
- 参数:
- shape (整数,整数)
-
放置轴的网格的行数和列数。
- loc (整数,整数)
-
网格内轴位置的行号和列号。
- rowspan 整数,默认值:1
-
轴向下跨越的行数。
- colspan 整数,默认值:1
-
轴向右跨越的列数。
- fig
Figure
,可选 -
放置子图的图形。默认为当前图形。
- **kwargs
-
其他关键字参数被传递给
add_subplot
。
- 返回:
Axes
-
子图的轴。返回的 Axes 实际上可以是子类的实例,例如极坐标投影的
projections.polar.PolarAxes
。
注意
以下调用
ax = subplot2grid((nrows, ncols), (row, col), rowspan, colspan)
等同于
fig = gcf() gs = fig.add_gridspec(nrows, ncols) ax = fig.add_subplot(gs[row:row+rowspan, col:col+colspan])
用法
matplotlib.pyplot.subplot2grid(shape, loc, rowspan=1, colspan=1, fig=None, **kwargs)
相关用法
- Python matplotlib subplots用法及代码示例
- Python matplotlib subplot用法及代码示例
- Python matplotlib silent_list用法及代码示例
- Python matplotlib step用法及代码示例
- Python matplotlib select_matching_signature用法及代码示例
- Python matplotlib semilogx用法及代码示例
- Python matplotlib semilogy用法及代码示例
- Python matplotlib savefig用法及代码示例
- Python matplotlib axvspan用法及代码示例
- Python matplotlib Axes.get_legend_handles_labels用法及代码示例
- Python matplotlib AbstractMovieWriter用法及代码示例
- Python matplotlib triplot用法及代码示例
- Python matplotlib StarPolygonCollection.set_hatch用法及代码示例
- Python matplotlib Axes.hist用法及代码示例
- Python matplotlib boxplot用法及代码示例
- Python matplotlib InsetPosition用法及代码示例
- Python matplotlib ToolManager.toolmanager_disconnect用法及代码示例
- Python matplotlib Figure.set_size_inches用法及代码示例
- Python matplotlib figlegend用法及代码示例
- Python matplotlib Axes.step用法及代码示例
- Python matplotlib Axes.contour用法及代码示例
- Python matplotlib LassoSelector用法及代码示例
- Python matplotlib BrokenBarHCollection.set_hatch用法及代码示例
- Python matplotlib Axes.plot用法及代码示例
- Python matplotlib Axes.semilogx用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.pyplot.subplot2grid。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。