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 the plot keywords.

Parameters
  • s, size, markersize (float or list of float, optional) – Aliases for the marker size.

  • smin, smax (float, optional) – Used to scale the s array. These are the minimum and maximum marker sizes. Defaults are the minimum and maximum of the s array.

  • 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 norm normalizer and drawing from the cmap colormap.

  • cmap (colormap-spec, optional) – The colormap specifer, passed to the Colormap constructor.

  • cmap_kw (dict-like, optional) – Passed to Colormap.

  • vmin, vmax (float, optional) – Used to generate a norm for scaling the c array. These are the values corresponding to the leftmost and rightmost colors in the colormap. Defaults are the minimum and maximum values of the c array.

  • norm (normalizer spec, optional) – The colormap normalizer, passed to the Norm constructor.

  • 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.