From: Alan G I. <ai...@am...> - 2006-12-22 18:22:43
|
On Fri, 22 Dec 2006, ch...@se... apparently wrote:=20 > 1st message in this thread has code to create each plot. =20 > Each one does a 'figure_ =3D pylab.figure()' already.=20 Sorry I missed the thread, but each call to pylab.figure()=20 will give you a new active figure. Everything you plot will=20 then be plotted to that figure. Previous plots will not be=20 erased until you explicitly remove them. You can also get=20 the axes for a particular figure and plot directly to the=20 axis. Probably you are not creating new figures when you think you=20 are... hth, Alan Isaac |