mpl_toolkits.axes_grid1.inset_locator.InsetPosition #

クラス mpl_toolkits.axes_grid1.inset_locator. InsetPosition (, lbwh ) [ソース] #

拠点:object

挿入軸を配置するためのオブジェクト。

これは、Figure の代わりに、軸に正規化された座標を指定することによって作成されます。

パラメータ:
matplotlib.axes.Axes

座標の正規化に使用する軸。

4 つの float のlbw iterable

軸の正規化された座標の単位での、挿入軸の左端、下端、幅、および高さ。

こちらもご覧ください

matplotlib.axes.Axes.set_axes_locator()

以下は、親軸の高さの 20% と幅の 40% を持つボックスに挿入軸をバインドします。指定された軸のサイズ ([0, 0, 1, 1]) により、軸が境界ボックスを完全に満たすことが保証されます。

>>> parent_axes = plt.gca()
>>> ax_ins = plt.axes([0, 0, 1, 1])
>>> ip = InsetPosition(ax, [0.5, 0.1, 0.4, 0.2])
>>> ax_ins.set_axes_locator(ip)
__call__ ( ax , renderer ) [ソース] #

self を関数として呼び出します。