> 2009/10/5 Ernest Adrogué <eadro...@gmx.net>:
> is it possible to draw unfilled scatter points?

Yes, try the following

>>> import numpy as np
>>> import matplotlib.pyplot as plt
>>> x = np.random.rand(10)
>>> y = np.random.rand(10)
>>> plt.scatter(x, y, facecolor='none')
>>> plt.show()

Also take a look at
http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.scatter

Cheers,
Scott

------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to