[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] fill without label

2006-06-19 Thread aonghus
thanks for the suggestion- that works as expected: fill(fx, fy, label = '_nolegend_')aJohn Hunter <[EMAIL PROTECTED]> wrote: >>>>> "aonghus" == aonghus <[EMAIL PROTECTED]> writes:aonghus> Hi, Does anyone know how to use the fill command witho

[Matplotlib-users] fill without label

2006-06-19 Thread aonghus
Hi,Does anyone know how to use the fill command without a label appearing in the legend box?I have something like this: plot(x, y, label = 'label1') fill(fx, fy) legend(loc = 'best')I thought this might work: fill(fx, fy, label = None)but I get this error instead: raise TypeError('text must be a st