[Matplotlib-users] Font issue(s) MacOSX/WXAgg

2006-08-11 Thread Marin Manuel
Hi list, I'm having some font weirdness using matplotlib 0.87.4 on MacOSX with the WXAgg backend. It's a clean install of universal builds from macpython.org. First of all, when lauching for the first time (or if I delete the font cache), I get: ipython -pylab loaded rc file /Users/manuel/

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.