Re: [Matplotlib-users] Square/Circle markers with transparent, faces?

2007-03-16 Thread Yannick Copin
Hi, John T Whelan [EMAIL PROTECTED] wrote: set markerfacecolor (a.k.a. mfc) = 'None' (make sure you include the quotes). This works with plot: plot(randn(5),randn(5), 'bo', mfc=None, mec='b') but not with scatter: scatter(randn(5),randn(5), edgecolor='b', facecolor='None') returns: --

Re: [Matplotlib-users] Square/Circle markers with transparent faces?

2007-03-09 Thread Andrew Straw
set markerfacecolor (a.k.a. mfc) = 'None' (make sure you include the quotes). -Andrew John T Whelan wrote: Dear matplotlib gurus, When I use plot(t,x,'rx',t,y,'bs'); in matlab, it produces blue boxes for y, i.e., squares with a blue border and a transparent interior, so that if one of