Relatively new user here. I need to place a series of white colored dots on a 
map. I've been able to place black dots using:

plt.plot(x,y,color='k',marker='.',markersize=3.0)

The color option in this command does not plot the chosen color, only black. 
The command:

plt.plot(x,y,'wo')

places white dots with black around the edges.  I see that the 'w' is for white 
and 'o' is for the symbol. I'd like to use the former command since that gives 
me control over marker size and a dot without a black edge.

Lastly, it's not clear to me if I should be using plt.plot or just plot. Both 
work, and I don't know the difference. 
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to