Re: [Matplotlib-users] Changing symbols on the fly

2006-08-11 Thread John Hunter
> "David" == David Grant <[EMAIL PROTECTED]> writes: David> I have a look like this: for i,_ in David> enumerate(myRunObject.results[0]): pylab.plot(x, counts[i]) David> That will plot a bunch of curves and I would like the point David> style to change as well as the colour (w

Re: [Matplotlib-users] Changing symbols on the fly

2006-08-11 Thread Richard Albright
i've gone something similar using separate masked arrays on my data set, see http://www.scipy.org/Cookbook/Matplotlib/Plotting_values_with_masked_arrays, for how to do this. On Thu, 2006-08-10 at 15:40 -0700, David Grant wrote: > I have a look like this: > > for i,_ in enumerate(myRunObject.

[Matplotlib-users] Changing symbols on the fly

2006-08-10 Thread David Grant
I have a look like this:    for i,_ in enumerate(myRunObject.results[0]):    pylab.plot(x, counts[i])That will plot a bunch of curves and I would like the point style to change as well as the colour (which changes automatically). Is there a nice way to do this? The only idea I had was to make a