【发布时间】:2013-11-24 10:00:55
【问题描述】:
我有许多返回数字的函数,比如
def create_predef_plot():
f, ax = plt.subplots()
ax.plot(randn(10))
return f, ax
如何将 create_predef_plot 返回的绘图插入 f2
plot1 = create_predef_plot()
f2, (ax21, ax22) = subplots(1,2)
【问题讨论】:
标签: python matplotlib ipython-notebook