|
From: Jouni K. S. <jk...@ik...> - 2009-02-08 18:22:00
|
A B <pyt...@gm...> writes: > f = pyplot.figure() When you do this, matplotlib retains a reference to the figure until you close it so that you can go back to it with e.g. figure(4). So add pyplot.close(f) to your script. Or, even better, use the object-oriented API. To get started with that, see http://matplotlib.sourceforge.net/leftwich_tut.txt -- Jouni K. Seppänen http://www.iki.fi/jks |