[Matplotlib-users] scatter plot without edge color

2011-10-15 Thread Chao YUE
Dear all, how can I make a scatter plot without edgecolor? import matplotlib.pyplot as plt In [110]: plt.scatter(np.arange(10),np.arange(10,20),edgecolor=None) Out[110]: matplotlib.collections.CircleCollection object at 0x5cf16d0 in this case I can use edgecolor='w' to solve it, but when points

Re: [Matplotlib-users] scatter plot without edge color

2011-10-15 Thread Durrieu Jean-Louis
Hi Chao! On Oct 15, 2011, at 2:55 PM, Chao YUE wrote: import matplotlib.pyplot as plt In [110]: plt.scatter(np.arange(10),np.arange(10,20),edgecolor=None) Out[110]: matplotlib.collections.CircleCollection object at 0x5cf16d0 in this case I can use edgecolor='w' to solve it, but when points

Re: [Matplotlib-users] scatter plot without edge color

2011-10-15 Thread Tony Yu
On Sat, Oct 15, 2011 at 8:55 AM, Chao YUE chaoyue...@gmail.com wrote: Dear all, how can I make a scatter plot without edgecolor? import matplotlib.pyplot as plt In [110]: plt.scatter(np.arange(10),np.arange(10,20),edgecolor=None) Out[110]: matplotlib.collections.CircleCollection object at

Re: [Matplotlib-users] scatter plot without edge color

2011-10-15 Thread Chao YUE
cool. it's done!! Thanks!!! Chao 2011/10/15 Tony Yu tsy...@gmail.com On Sat, Oct 15, 2011 at 8:55 AM, Chao YUE chaoyue...@gmail.com wrote: Dear all, how can I make a scatter plot without edgecolor? import matplotlib.pyplot as plt In [110]: