综观matplotlib
文档,似乎标准的方式来添加AxesSubplot
一个Figure
是使用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
吗?如果可以,我该怎么做?
更新:我尚未设法使轴和图形的创建脱钩,但是下面的答案中的以下示例可以轻松地在新的或olf图形实例中重用先前创建的轴。这可以用一个简单的函数来说明:
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