arviz_plots.backend.scatter#
- arviz_plots.backend.scatter(x, y, target, *, size=<unset>, marker=<unset>, alpha=<unset>, color=<unset>, facecolor=<unset>, edgecolor=<unset>, width=<unset>, **artist_kws)[source]#
Interface to a scatter plot.
- Parameters:
- x, yarray_like of
shape(n,) Data for the points to plot
- target
PlotObject The backend object representing a plot where this visual should be added.
- size, marker, alpha, color, facecolor, edgecolor, width
any Properties of the generated visual. If needed, see Keyword arguments for more details.
- **artist_kws
Passed to the backend plotting function of the respective backend:
- x, yarray_like of
- Returns:
- scatter_visual
any The backend object representing the plotted collection of points.
- scatter_visual