最佳答案
看看 matplotlib
文档,似乎向 Figure
添加 AxesSubplot
的标准方法是使用 Figure.add_subplot
:
from matplotlib import pyplot
fig = pyplot.figure()
ax = fig.add_subplot(1,1,1)
ax.hist( some params .... )
我希望能够创建独立于图的类 AxesSubPlot
对象,这样我就可以在不同的图中使用它们。差不多
fig = pyplot.figure()
histoA = some_axes_subplot_maker.hist( some params ..... )
histoA = some_axes_subplot_maker.hist( some other params ..... )
# make one figure with both plots
fig.add_subaxes(histo1, 211)
fig.add_subaxes(histo1, 212)
fig2 = pyplot.figure()
# make a figure with the first plot only
fig2.add_subaxes(histo1, 111)
在 matplotlib
中这可能吗? 如果可能,我该怎么做?
更新: 我还没有成功地解耦创建 Axes 和 Fig,但是下面的答案中的例子可以很容易地在新的或者 olf Fig 实例中重用以前创建的 Axis。这可以用一个简单的函数来说明:
def plot_axes(ax, fig=None, geometry=(1,1,1)):
if fig is None:
fig = plt.figure()
if ax.get_geometry() != geometry :
ax.change_geometry(*geometry)
ax = fig.axes.append(ax)
return fig