Re: [Matplotlib-users] variable line thickness in a plot

2008-03-11 Thread Steve Schmerler
On Tue, Mar 11, 2008 at 01:23:55PM -0700, eliss wrote: > On 3/11/08, Steve Schmerler <[EMAIL PROTECTED]> wrote: > > > > On Tue, Mar 11, 2008 at 12:45:21PM -0700, eliss wrote: > > > The API for the plot function states that the line thickness can only be > > a > > > single floating point number. > >

Re: [Matplotlib-users] variable line thickness in a plot

2008-03-11 Thread eliss
On 3/11/08, Troels Kofoed Jacobsen <[EMAIL PROTECTED]> wrote: > > On Tue, Mar 11, 2008 at 01:23:04PM -0700, eliss wrote: > > > >On 3/11/08, Troels Kofoed Jacobsen <[EMAIL PROTECTED]> wrote: > > > > On Tue, Mar 11, 2008 at 12:45:21PM -0700, eliss wrote: > > > > > >Hi, does any

Re: [Matplotlib-users] variable line thickness in a plot

2008-03-11 Thread Troels Kofoed Jacobsen
On Tue, Mar 11, 2008 at 01:23:04PM -0700, eliss wrote: > >On 3/11/08, Troels Kofoed Jacobsen <[EMAIL PROTECTED]> wrote: > > On Tue, Mar 11, 2008 at 12:45:21PM -0700, eliss wrote: > > > >Hi, does anyone know of a way to create lines with variable > thickness > >

Re: [Matplotlib-users] variable line thickness in a plot

2008-03-11 Thread eliss
On 3/11/08, Troels Kofoed Jacobsen <[EMAIL PROTECTED]> wrote: > > On Tue, Mar 11, 2008 at 12:45:21PM -0700, eliss wrote: > > > >Hi, does anyone know of a way to create lines with variable thickness > >and color when doing a plot? > >Basically, I'd like to have a third dimension represen

Re: [Matplotlib-users] variable line thickness in a plot

2008-03-11 Thread Steve Schmerler
On Tue, Mar 11, 2008 at 12:45:21PM -0700, eliss wrote: > The API for the plot function states that the line thickness can only be a > single floating point number. > Really? Try plot([1,2,3], lw=math.pi) cheers, steve

Re: [Matplotlib-users] variable line thickness in a plot

2008-03-11 Thread Troels Kofoed Jacobsen
On Tue, Mar 11, 2008 at 12:45:21PM -0700, eliss wrote: > >Hi, does anyone know of a way to create lines with variable thickness >and color when doing a plot? >Basically, I'd like to have a third dimension represented using >thickness. The API for the plot function states that the l

[Matplotlib-users] variable line thickness in a plot

2008-03-11 Thread eliss
Hi, does anyone know of a way to create lines with variable thickness and color when doing a plot? Basically, I'd like to have a third dimension represented using thickness. The API for the plot function states that the line thickness can only be a single floating point number. Thanks ---