scatter_wrapper¶
-
scatter_wrapper(self, func, *args, s=None, size=None, markersize=None, c=None, color=None, markercolor=None, smin=None, smax=None, cmap=None, cmap_kw=None, vmin=None, vmax=None, norm=None, norm_kw=None, lw=None, linewidth=None, linewidths=None, markeredgewidth=None, markeredgewidths=None, edgecolor=None, edgecolors=None, markeredgecolor=None, markeredgecolors=None, **kwargs)[source]¶ Wraps
scatter, adds optional keyword args more consistent with theplotkeywords.- Parameters
s, size, markersize (float or list of float, optional) – Aliases for the marker size.
smin, smax (float, optional) – Used to scale the
sarray. These are the minimum and maximum marker sizes. Defaults are the minimum and maximum of thesarray.c, color, markercolor (color-spec or list thereof, or array, optional) – Aliases for the marker fill color. If just an array of values, the colors will be generated by passing the values through the
normnormalizer and drawing from thecmapcolormap.cmap (colormap-spec, optional) – The colormap specifer, passed to the
Colormapconstructor.cmap_kw (dict-like, optional) – Passed to
Colormap.vmin, vmax (float, optional) – Used to generate a
normfor scaling thecarray. These are the values corresponding to the leftmost and rightmost colors in the colormap. Defaults are the minimum and maximum values of thecarray.norm (normalizer spec, optional) – The colormap normalizer, passed to the
Normconstructor.norm_kw (dict, optional) – Passed to
Norm.lw, linewidth, linewidths, markeredgewidth, markeredgewidths (float or list thereof, optional) – Aliases for the marker edge width.
edgecolors, markeredgecolor, markeredgecolors (color-spec or list thereof, optional) – Aliases for the marker edge color.
**kwargs – Passed to
scatter.