本文整理汇总了Python中matplotlib.axes.Axes.set_axes_locator方法的典型用法代码示例。如果您正苦于以下问题:Python Axes.set_axes_locator方法的具体用法?Python Axes.set_axes_locator怎么用?Python Axes.set_axes_locator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.axes.Axes
的用法示例。
在下文中一共展示了Axes.set_axes_locator方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: inset_axes
# 需要导入模块: from matplotlib.axes import Axes [as 别名]
# 或者: from matplotlib.axes.Axes import set_axes_locator [as 别名]
def inset_axes(parent_axes, width, height, loc=1,
bbox_to_anchor=None, bbox_transform=None,
axes_class=None,
axes_kwargs=None,
**kwargs):
if axes_class is None:
axes_class = Axes
if axes_kwargs is None:
inset_axes = Axes(parent_axes.figure, parent_axes.get_position())
else:
inset_axes = Axes(parent_axes.figure, parent_axes.get_position(),
**axes_kwargs)
axes_locator = AnchoredSizeLocator(parent_axes.bbox,
width, height,
loc=loc)
inset_axes.set_axes_locator(axes_locator)
_add_inset_axes(parent_axes, inset_axes)
return inset_axes