本文简要介绍 python 语言中mpl_toolkits.axes_grid1.inset_locator.InsetPosition
的用法。
-
基础:
object
[
Deprecated
]注意
自 3.8 版起已弃用:请改用 Axes.inset_axes。
用于定位插入轴的对象。
这是通过指定轴中的归一化坐标而不是图形来创建的。
- 参数:
- parent
Axes
-
用于标准化坐标的轴。
- lbwh 四个浮点数的可迭代
-
插入轴的左边、下边、宽度和高度,以
parent
轴的标准化坐标为单位。
- parent
例子
下面将插入轴限制为一个框,其高度为父轴的 20%,宽度为父轴的 40%。指定轴的大小 ([0, 0, 1, 1]) 确保轴完全填充边界框:
>>> parent_axes = plt.gca() >>> ax_ins = plt.axes([0, 0, 1, 1]) >>> ip = InsetPosition(parent_axes, [0.5, 0.1, 0.4, 0.2]) >>> ax_ins.set_axes_locator(ip)
用法
class mpl_toolkits.axes_grid1.inset_locator.InsetPosition(parent, lbwh)
相关用法
- 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 subplots用法及代码示例
- 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用法及代码示例
- Python matplotlib Axes.semilogy用法及代码示例
- Python matplotlib MovieWriterRegistry.register用法及代码示例
- Python matplotlib PolyQuadMesh.set_hatch用法及代码示例
- Python matplotlib warn_deprecated用法及代码示例
- Python matplotlib Text.set_bbox用法及代码示例
- Python matplotlib Axes.inset_axes用法及代码示例
- Python matplotlib delete_parameter用法及代码示例
- Python matplotlib xticks用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 mpl_toolkits.axes_grid1.inset_locator.InsetPosition。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。