|
From: Yuxiang W. <yw...@vi...> - 2014-05-12 05:56:37
|
Dear all, I am curious that whether this is possible in matplotlib: I first create some figures, with subplots. import matplotlib.pyplot as plt fig1, axs1 = plt.subplots(2, 2) fig2, axs2 = plt.subplots(2, 2) And then, could I recombine them, so fig3 is composed of the first row in fig1 (i.e., axs1[0, 0] and axs1[0, 1]) and second row in fig2 (i.e., axs2[1, 0] and axs2[1, 1])? Currently, all I could do is to re-plot them. I am curious about whether there is a way that I can just move axes around and re-combine them to make new figures. Thanks! -Shawn -- Yuxiang "Shawn" Wang Gerling Research Lab University of Virginia yw...@vi... +1 (434) 284-0836 https://sites.google.com/a/virginia.edu/yw5aj/ |