Hello,

Suppose I create a matplotlib figure and plot things in it.
In pylab it would be like:

from pylab import *

figure(1)
plot([1,2,3],[1,2,3],'r*',label='label1')
plot([1,2,3],[2,3,4],'r',label='label2')
legend(loc='upper right')
text(1.2,3,'nice figure')
xlabel('xlabel')
ylabel('ylabel')

show()

Now, after creating figure(1), I would like to make figure(2) that is
completely identical to figure(1).
is this possible?
Does anyone know how?

Thanks,
Eli
------------------------------------------------------------------------------
Benefiting from Server Virtualization: Beyond Initial Workload 
Consolidation -- Increasing the use of server virtualization is a top
priority.Virtualization can reduce costs, simplify management, and improve 
application availability and disaster protection. Learn more about boosting 
the value of server virtualization. http://p.sf.net/sfu/vmware-sfdev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to