我对 matplotlib 有点陌生。我想做的是编写代码,将几个数字保存到 eps 文件中,然后生成一个复合数字。基本上我想做的是有类似的东西
def my_plot_1():
fig = plt.figure()
...
return fig.
def my_plot_2():
fig = plt.figure()
...
return fig
def my_combo_plot(fig1,fig2):
fig = plt.figure()
gs = gridspec.GridSpec(2,2)
ax1 = plt.subplot(gs[0,0])
ax2 = plt.subplot(gs[0,1])
ax1 COPY fig1
ax2 COPY fig2
...
然后我可以在哪里做类似的事情
my_combo_plot( my_plot_1() , my_plot_2() )
并从前两个函数返回的图中复制所有数据和设置,但我不知道如何使用 matplotlib 完成此操作。