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