Re: [Matplotlib-users] possible bug with scatter

2009-06-21 Thread Jae-Joon Lee
On Sun, Jun 21, 2009 at 4:42 PM, Thomas Robitaille wrote: > Hi Jae-Joon, > > Thanks for the quick fix! Just looked in the svn browser, and noticed you > changed line 5290 of axes.py to > > 'o' : (0,0,3), > > Should this not be > > 'o' : (0,3,0), > > ? No, somehow the meaning of each item is differ

Re: [Matplotlib-users] possible bug with scatter

2009-06-21 Thread Thomas Robitaille
Hi Jae-Joon, Thanks for the quick fix! Just looked in the svn browser, and noticed you changed line 5290 of axes.py to 'o' : (0,0,3), Should this not be 'o' : (0,3,0), ? Thanks, Tom On Jun 21, 2009, at 2:59 PM, Jae-Joon Lee wrote: > Thanks for the report. > And, this turned out to be a b

Re: [Matplotlib-users] possible bug with scatter

2009-06-21 Thread Jae-Joon Lee
Thanks for the report. And, this turned out to be a bug. The symbol style code was simply ignored when its value is 3. While the bug should now be fixed (both in the trunk and the maint. branch), you may use marker style like (20,0,0) (or increase the first number when symbol is large) for a worka

[Matplotlib-users] possible bug with scatter

2009-06-21 Thread Thomas Robitaille
Hi, I'm trying to use the scatter method, making use of the option to specify the marker as a tuple. From the documentation, it would seem that specifying marker=(0,3,0) should draw a circle. However, this is not the case. If you consider the following code: import matplotlib matplotlib.use('Agg