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() However, a

[Matplotlib-users] xlabel, ylabel style configure in matplolibrc file

2009-02-24 Thread Zunbeltz Izaola
Dear all, If I am not wrong it is not possible to set the rotation and alignament options of xlabel and ylabel in the rcParam. I think this would be a nice idea. If there is nobody working on that I can have a look. Could you please outline what classes/method should I look in the matplotlib

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

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] Very simple question, but I can't still find a solution.

2009-02-24 Thread Paul Redman
Hi Dante, If I've understood you correctly, then you need to add one line: # Set the limits of the x-axis, overriding default. plt.xlim(0, 4) Hope this helps, Paul -- View this message in context:

Re: [Matplotlib-users] Problem with the position of tick labels in postscript file

2009-02-24 Thread david.froger
Hi, I have the same problem, I have joined examples. http://www.nabble.com/file/p22180990/example.py example.py http://www.nabble.com/file/p22180990/example.pdf example.pdf http://www.nabble.com/file/p22180990/example.pdf example.pdf Zack 24 wrote: Hi Richard, what exactly wrong here?

[Matplotlib-users] How to keep figure instead of flashing

2009-02-24 Thread lehe
Hi, I am now plot two figures, The second one won't generate until I close the first one but the second one just flash and disappear very quickly. How can I keep both figures open until I close them myself? Thanks Here is my code: import matplotlib.pyplot as plt .. plt.figure()

Re: [Matplotlib-users] How to keep figure instead of flashing

2009-02-24 Thread Ryan May
On Mon, Feb 23, 2009 at 9:33 PM, lehe timlee...@yahoo.com wrote: Hi, I am now plot two figures, The second one won't generate until I close the first one but the second one just flash and disappear very quickly. How can I keep both figures open until I close them myself? Thanks Here is my

Re: [Matplotlib-users] TclError Couldn't Connect to display :0.0

2009-02-24 Thread Michael Droettboom
rlp_GMC wrote: When I try to save a fig to a file I get the error TclError Couldn't Connect to display :0.0 I looked in the Maplotlib users manual (latest version pg 144-146) and tried the following with no luck. BTW why is the same module named differently Linux/Win ? I presume

[Matplotlib-users] Plotting with custom symbols

2009-02-24 Thread Fred Mailhot
Hi, I've looked through the documentation, and see that it's possible to plot a variety of symbols, including some customization, but what I'd really like to do is use a text character as the point marker. The only way I can think of doing this right now is to annotate the point (with zero

[Matplotlib-users] Installing matplotlib for Python 2.6 on windows

2009-02-24 Thread Philip Bloom
What is the recommended way to install matplotlib for python 2.6? I have numpy installed currently on my python 2.6 distribution. Is there an existing binary installer for matplotlib? Is the best thing to do to try and compile from the current .98.5 source? Thanks for any help or advice, it is

Re: [Matplotlib-users] Plotting with custom symbols

2009-02-24 Thread Jae-Joon Lee
Can't you simply use text? text(0.5, 0.5, s, va=center, ha=center) Unfortunately, no TextCollection yet. -JJ On Tue, Feb 24, 2009 at 4:49 PM, Fred Mailhot fmail...@connect.carleton.ca wrote: Hi, I've looked through the documentation, and see that it's possible to plot a variety of

Re: [Matplotlib-users] Installing matplotlib for Python 2.6 on windows

2009-02-24 Thread Patrick Marsh
As I mentioned in a previous email last night, I have built an installer for matplotlib (updated this afternoon) off the SVN trunk. You are welcome to use it, however be aware that maplotlib does not support Python 2.6 (and won't until after Numpy officially supports Python 2.6) and there are some

Re: [Matplotlib-users] Problem with the position of tick labels in postscript file

2009-02-24 Thread david.froger
I think the new version of matplotlib corrected the bug. I have the problem with version 0.91.2, and there is no problem with the version 0.98.3. david.froger wrote: Hi, I have the same problem, I have joined examples. http://www.nabble.com/file/p22180990/example.py example.py