Re: [Matplotlib-users] plot windows

2009-02-24 Thread Matthias Michler
Hello Paul Anton, On Tuesday 24 February 2009 09:44:38 Paul Anton Letnes wrote: > Is it possible to completely eliminate the   > windows popping up? Though not very important, it is still annoying   You may want to choose another backend. That is e.g. "agg" backend, that doesn't use a X-window.

Re: [Matplotlib-users] plot windows

2009-02-24 Thread Alan G Isaac
On 2/24/2009 3:44 AM Paul Anton Letnes apparently wrote: > Is it possible to completely eliminate the > windows popping up? Though not very important, it is still annoying > that windows pop up when running a script in the background. Sounds like you are calling `show`. Don't. Cheers, Alan I

Re: [Matplotlib-users] plot windows

2009-02-24 Thread Paul Anton Letnes
On 24. feb.. 2009, at 08.11, Eric Firing wrote: > Paul Anton Letnes wrote: >> Hello, >> I want to save a large number of figures to file, roughly like this: >> import pylab >> for i in xrange(100): >> pylab.plot(x[i], y[i]) >> pylab.savefig('plot' + str(i) + '.eps') >> pylab.figure()

Re: [Matplotlib-users] plot windows

2009-02-23 Thread Eric Firing
Paul Anton Letnes wrote: > Hello, > > I want to save a large number of figures to file, roughly like this: > > import pylab > for i in xrange(100): > pylab.plot(x[i], y[i]) > pylab.savefig('plot' + str(i) + '.eps') > pylab.figure() > > However, a large number of figure windows sho

[Matplotlib-users] plot windows

2009-02-23 Thread Paul Anton Letnes
Hello, I want to save a large number of figures to file, roughly like this: import pylab for i in xrange(100): pylab.plot(x[i], y[i]) pylab.savefig('plot' + str(i) + '.eps') pylab.figure() However, a large number of figure windows show up on screen, and eventually, the applicati