small scatter plot color bug

It seems like this should be possible:

ax.scatter(x, y, c=None)

but axes chokes on the c=None parameter.

Just use plot(x, y, 'o') or whatever marker you want, and set the
markersize. scatter is meant for plots where either the marker size
or marker color vary. plot handles homogeneous markers.

JDH

ยทยทยท

On Thu, Jul 17, 2008 at 1:53 PM, Ben Axelrod <baxelrod@...2066...> wrote:

It seems like this should be possible:

ax.scatter(x, y, c=None)