Re: [Matplotlib-users] Improved dashing for black and white plots?

2006-07-11 Thread Fernando Perez
On 7/11/06, John Hunter <[EMAIL PROTECTED]> wrote: > You don't need any defense -- it's no secret that mpl is > under-documented. If you know how to look, the information is usually > there, but the trick is knowing how to look > > In [3]: l, = plot([1,2,3]) > > In [4]: setp(l) Ah, thanks for th

Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-11 Thread imcs ee
what about the mplot3d. (http://www.scipy.org/Cookbook/Matplotlib/mplot3D) it works nice under matplotlib0.86.2 but it can't work under matplotlib 0.87.3(with numpy or numeric). On 7/12/06, Charlie Moad <[EMAIL PROTECTED]> wrote: > On 7/7/06, John Hunter <[EMAIL PROTECTED]> wrote: > > > > We'd lik

[Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-11 Thread Charlie Moad
On 7/7/06, John Hunter <[EMAIL PROTECTED]> wrote: > > We'd like to do a bugfix release for the next release of enthought > python, which will include the latest mpl. Apparently, there is a > problem with 0.87.3 and numpy which has been fixed in svn. > > If there is anything we should wait on, let

Re: [Matplotlib-users] Improved dashing for black and white plots?

2006-07-11 Thread John Hunter
> "Fernando" == Fernando Perez <[EMAIL PROTECTED]> writes: Fernando> In my humble defense, the fact that this is barely Fernando> mentioned in the pylab tutorial, not at all in the plot Fernando> docstring, and also not in Perry's tutorial, may have Fernando> something to do wi

Re: [Matplotlib-users] Improved dashing for black and white plots?

2006-07-11 Thread Fernando Perez
On 7/10/06, John Hunter <[EMAIL PROTECTED]> wrote: > "Fernando" == Fernando Perez <[EMAIL PROTECTED]> writes: Fernando> Hi all, this is somewhat of a half-feature request, Fernando> half-question. I just went through a rather unpleasant Fernando> exercise in trying to get a line

Re: [Matplotlib-users] Improved dashing for black and white plots?

2006-07-11 Thread Fernando Perez
On 7/11/06, Gary Ruben <[EMAIL PROTECTED]> wrote: > On this topic, here is something I used the other day (just some > different dash sequences): > > e, = plot(x, y, 'k', label=r'$\theta_3=%1.2f$'%(th3)) > setp(e, dashes={0:(1,0), 1:(2,2), 2:(10,4), 3:(10,4,4,4), 4:(10,2,2,2), > 5:(15,2,6,2)}[i])

[Matplotlib-users] matplotlib IndexFormatter missing

2006-07-11 Thread David Grant
Anyone know what happened to matplotlib.ticker.IndexFormatter? Is there are replacement for it?-- David GrantPlease Note my new email address: [EMAIL PROTECTED] - Using Tomcat but need to do more? Need to support web services

Re: [Matplotlib-users] order of drawing a plot

2006-07-11 Thread humufr
you can use the zorder option: plot(x_line,y_line,zorder=10) scatter(x_point,y_point,zorder=12) N. Le mardi 11 juillet 2006 14:48, aonghus a écrit : > Hi, > > I would like to draw a line, and then draw some points > on top of the line, so I try something like > > plot(x_line, y_line, ...) > s

[Matplotlib-users] order of drawing a plot

2006-07-11 Thread aonghus
Hi, I would like to draw a line, and then draw some points on top of the line, so I try something like plot(x_line, y_line, ...) scatter(x_point, y_point) but in the resulting plot it seems the points are drawn first and the lines drawn over them (so they are obscured). How do I specify the o

Re: [Matplotlib-users] EPS fails to open in Adobe Illustrator

2006-07-11 Thread Darren Dale
On Tuesday 11 July 2006 11:03, Andrew Straw wrote: > Darren Dale wrote: > > On Tuesday 11 July 2006 01:22, Andrew Straw wrote: > >> Darren Dale wrote: > >>> Hi Andrew, > >>> > >>> On Monday 10 July 2006 8:19 pm, Andrew Straw wrote: > Where should I start trying to debug an issue where Adobe Il

Re: [Matplotlib-users] EPS fails to open in Adobe Illustrator

2006-07-11 Thread Andrew Straw
Darren Dale wrote: > On Tuesday 11 July 2006 01:22, Andrew Straw wrote: > >> Darren Dale wrote: >> >>> Hi Andrew, >>> >>> On Monday 10 July 2006 8:19 pm, Andrew Straw wrote: >>> Where should I start trying to debug an issue where Adobe Illustrator CS for Windows is unable t

Re: [Matplotlib-users] bug?

2006-07-11 Thread humufr
Some change have been introduce in matplotlib? Because I used this sequence before and it was working. I'm a little bit surprise by the fact that the rgb sequence must be three numbers between 0 and 1. Generally rgb sequence are between 0 and 255, aren't they? http://homepage.mac.com/jakesan/D

Re: [Matplotlib-users] EPS fails to open in Adobe Illustrator

2006-07-11 Thread Darren Dale
On Tuesday 11 July 2006 01:22, Andrew Straw wrote: > Darren Dale wrote: > > Hi Andrew, > > > > On Monday 10 July 2006 8:19 pm, Andrew Straw wrote: > >> Where should I start trying to debug an issue where Adobe Illustrator CS > >> for Windows is unable to open my EPS file generated by matplotlib? Wh

[Matplotlib-users] Install

2006-07-11 Thread Brice Thurin
Dear All, i was wondering if they are a binary package for matplotlib for macos10.3 with python2.4, and the last version of numpy. The one i found is only the 0.82 and required numeric. Or do i have to build from source. I am a bit confused as the last source file still talk about numeric and

Re: [Matplotlib-users] Improved dashing for black and white plots?

2006-07-11 Thread Gary Ruben
On this topic, here is something I used the other day (just some different dash sequences): e, = plot(x, y, 'k', label=r'$\theta_3=%1.2f$'%(th3)) setp(e, dashes={0:(1,0), 1:(2,2), 2:(10,4), 3:(10,4,4,4), 4:(10,2,2,2), 5:(15,2,6,2)}[i]) Maybe we should just blatantly copy the gnuplot sequence, a

Re: [Matplotlib-users] bug?

2006-07-11 Thread Eric Firing
An rgb colorspec in matplotlib must be a sequence of three numbers between zero and one, so the problem is that you are indeed giving an invalid rgb arg. I think perhaps you grabbed an error message from a different instance of this error; when I try it, I get an error message that correctly g