Is there a way to set default marker size (s) parameter for matplotlib plt.scatter() (or likewise to set the shape of the marker)?
mpl.rcParams.keys() has settings for the line plots, e.g.
import matplotlib as mpl
mpl.rcParams['lines.marker']='D'
... but they do not seem to relate to plt.scatter().
Thanks.
Clarification:
I'd like to use a configuration mechanism like mpl.rcParams(), or some other reasonably civilized method. Locally modifying library code is not it.
On the other hand, if it cannot currently be done and somebody submits a patch to Matplotlib, that would be awesome.