I generated several matplotlib.figure.Figure instances from my customizaed function (just like the fig returns from plt.subplots()), but now I want to group them together as a large Figure without needing to rewrite the whole function, is it possible?
fig1, axes1 = plt.subplots()
fig2, axes2 = plt.subplots()
Is it possible to have some function to:
fig3 = some_function(fig1, fig2)
I have searched for similar questions and they usually points to plt.subplots(), I fully recognize I can do so with plt.subplots but I then need to rewrite everything, therefore I am asking here. Thanks in advance!