I have a number of functions that return figures, like
def create_predef_plot():
f, ax = plt.subplots()
ax.plot(randn(10))
return f, ax
how can i insert the plot returned by create_predef_plot into f2
plot1 = create_predef_plot()
f2, (ax21, ax22) = subplots(1,2)