[Matplotlib-users] RE : Re: Problem with pylab.fill

2006-12-07 Thread Pellegrini Eric
Hi John, thank you very much for the hand. I think that I have found my mistake. I was launching my script trough Idle that seems to be the reason why it was to slow. Running my script with the command line or by double-clicking on it gave results similar to yours. Would you know

[Matplotlib-users] pcolormesh

2006-12-07 Thread Pierre GM
Talking about pcolormesh: I was just playing with it right now, and it doesn't accept the 'shading' keyword. Poking around shows that kwargs.pop('shading','flat') should be used instead of kwargs.get('shading') in axes.py (same goes for the other parameters...)

[Matplotlib-users] RE : Re: Problem with pylab.fill

2006-12-07 Thread Pellegrini Eric
I forgot to send the output of the python test.py --verbose-helpful. Perhaps you will find something wrong there. Here it is: matplotlib data path C:\Python24\lib\site-packages\matplotlib\mpl-data $HOME=C:\Documents and Settings\Eric CONFIGDIR=C:\Documents

Re: [Matplotlib-users] spy ignores negative values?

2006-12-07 Thread Robert Cimrman
Eric Firing wrote: Robert and any other spy users: I have committed to svn a new axes method, spy3, that combines a modification of the functionality of both spy and spy2. I hope you can check it out. If it looks OK, then I would like to simply replace spy and spy2 with this combined

[Matplotlib-users] problems with vector output formats

2006-12-07 Thread Gary Ruben
There may be problems i.e. bugs in the eps and svg backends, as I often try (sometimes unsuccessfully) to edit these in inkscape and/or CorelDraw and sometimes, but not always, get 'badly formed eps file' messages from Corel, or spurious lines appearing in svg files in inkscape and Corel, for

[Matplotlib-users] zorder of legend

2006-12-07 Thread Gary Ruben
While I think of it, I think the default zorder of legends should be bigger so that, by default it overlays all plot lines and symbols. Gary R. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's

Re: [Matplotlib-users] RE : Re: Problem with pylab.fill

2006-12-07 Thread John Hunter
Pellegrini == Pellegrini Eric [EMAIL PROTECTED] writes: Pellegrini Hi John, thank you very much for the hand. Pellegrini I think that I have found my mistake. I was Pellegrini launching my script trough Idle that seems to be the Pellegrini reason why it was to slow. Running

Re: [Matplotlib-users] zorder of legend

2006-12-07 Thread John Hunter
Gary == Gary Ruben [EMAIL PROTECTED] writes: Gary While I think of it, I think the default zorder of legends Gary should be bigger so that, by default it overlays all plot Gary lines and symbols. The default zorder is 5, which is higher than any other as far as I can see. Can you

Re: [Matplotlib-users] spy ignores negative values?

2006-12-07 Thread Eric Firing
Robert Cimrman wrote: Eric Firing wrote: Robert and any other spy users: I have committed to svn a new axes method, spy3, that combines a modification of the functionality of both spy and spy2. I hope you can check it out. If it looks OK, then I would like to simply replace spy and

Re: [Matplotlib-users] RE : Re: Problem with pylab.fill

2006-12-07 Thread Eric Firing
John Hunter wrote: [...] You can pass in a sequence of facecolors the length of your number of polygons. Each element of the sequence must be RGBA, but you can use matplotlib's color converter to convert an arbitrary color argument to RGBA. John, You don't need to do this explicit

[Matplotlib-users] plotting images with smaller bounding box

2006-12-07 Thread Joachim Dahl
I am generating EPS files from images drawn with imshow(). How do I make a plot with minimal bounding box? I tried the different axis() arguments, without getting the result I am looking for so far. The image is supposed to drawn in scale, i.e., without stretching either dimension. Thanks