Dear all,

I use matplotlib 1.1.0.

import matplotlib.pyplot as plt
plt.plot(np.arange(10),'ro',mec='none')

when I use plt.show(),

there is only blank frame with axis not no points.

but plt.plot(np.arange(10),'ro') will give good plot with read filled
circles and black edges.

plt.scatter(np.arange(10),np.arange(10),c='r',marker='o',edgecolor='none')
is working fine.

but I really think plt.plot is a very good and easy function if you don't
make complex scatter points. and the circles look much nicer than that
produced by plt.scatter (thought I don't know why
as they use the same symble....)

does anyone else have found the same ?

thanks to all,

Chao
-- 
View this message in context: 
http://old.nabble.com/markeredgecolor-%28mec%29-in-the-plot-function-not-working--tp33662659p33662659.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
------------------------------------------------------------------------------
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to