我有许多返回数字的函数,比如
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)
答案 0 :(得分:1)
1)这与IPython无关,它是纯matplotlib
2)常见模式是使用ax
关键字参数。
def create_predef_plot( ax=None ):
if not ax
f, ax = plt.subplots()
ax.plot(randn(10))
return ax
f2, (ax21, ax22) = subplots(1,2)
create_predef_plot(ax=ax22)