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...@virginia.edu
+1 (434) 284-0836
https://sites.google.com/a/virginia.edu/yw5aj/

------------------------------------------------------------------------------
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to