[Matplotlib-users] XPDF works but Ghostscript Doesn't for .eps

2007-08-20 Thread Samuel M . Smith
I can only generate .eps files that will successfully distill into .pdf files when I use ps.usedistiller : xpdf not ps.usedistiller : ghostscript nor ps.usedistiller : None Is this a known problem? ghostscript does work fine for .ps files just not .eps In addition when ever I save a

Re: [Matplotlib-users] XPDF works but Ghostscript Doesn't for .eps

2007-08-20 Thread Darren Dale
On Monday 20 August 2007 12:11:30 pm Samuel M.Smith wrote: I can only generate .eps files that will successfully distill into .pdf files when I use ps.usedistiller : xpdf not ps.usedistiller : ghostscript nor ps.usedistiller : None Is this a known problem? ghostscript does work

[Matplotlib-users] erasing the figure border

2007-08-20 Thread Johann Cohen-Tanugi
hello, I am using matplotlib to make a drawing, so though I am using distances on the pad I do not need to display the axes and would rather have no frame and no tick. To achieve this, I tried using : rc('axes', edgecolor='white') rc('xtick', color='white') rc('ytick', color='white') The first

Re: [Matplotlib-users] erasing the figure border

2007-08-20 Thread Eric Firing
Johann Cohen-Tanugi wrote: hello, I am using matplotlib to make a drawing, so though I am using distances on the pad I do not need to display the axes and would rather have no frame and no tick. To achieve this, I tried using : rc('axes', edgecolor='white') If your axes instance is ax,

[Matplotlib-users] Line collections vs a collection of lines

2007-08-20 Thread Anthony M. Floyd
I'm trying to figure out the best way to handle the following situation: I have a wxApp that embeds a matplotlib figure in a panel. I use custom code to control adding and removing series from the axes in this figure, with some pretty fine grained control on when things get drawn, zoomed, etc.

Re: [Matplotlib-users] Line collections vs a collection of lines

2007-08-20 Thread Anthony M. Floyd
-Original Message- From: Eric Firing [mailto:[EMAIL PROTECTED] [snip] It probably comes down to program simplicity and readability, not speed, in your case. Eric Hi Eric, Thanks for this. That's essentially the decision I had reached, but I was also wondering if I'd missed

Re: [Matplotlib-users] Line collections vs a collection of lines

2007-08-20 Thread Eric Firing
Anthony M. Floyd wrote: -Original Message- From: Eric Firing [mailto:[EMAIL PROTECTED] [snip] It probably comes down to program simplicity and readability, not speed, in your case. Eric Hi Eric, Thanks for this. That's essentially the decision I had reached, but I

Re: [Matplotlib-users] Line collections vs a collection of lines

2007-08-20 Thread Anthony M. Floyd
[snip] Are you aware that the plot method can plot the columns of 2-D arrays? Any kwargs apply to all the lines. When plot does this, it makes a list of lines, not a line collection, so it is similar to looping over a set of single plot commands. There is no particular speed

Re: [Matplotlib-users] HOW TO: have multiple plot windows open at the same time?

2007-08-20 Thread Angus McMorland
On 21/08/07, Geoffrey Zhu [EMAIL PROTECTED] wrote: Hi Everyone, I just started to use pylab, and there are two issues I can't figure out a way to get around. 1. show() does not return until I close the plot window. This makes it impossible to show multiple plots at the same time. How can I

Re: [Matplotlib-users] HOW TO: have multiple plot windows open at the same time?

2007-08-20 Thread Bill Baxter
On 8/21/07, Geoffrey Zhu [EMAIL PROTECTED] wrote: Hi Everyone, I just started to use pylab, and there are two issues I can't figure out a way to get around. 1. show() does not return until I close the plot window. This makes it impossible to show multiple plots at the same time. How can I