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

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,

[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] 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? When

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, ...)

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]) Thanks

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 plot with

[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 us

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 like to do