vispipe.plot_backend.MPL_Figure.scatter#

MPL_Figure.scatter(points, *args, T=False, ax=None, **scatterkwargs)#

Calls ax.scatter()

Parameters:
  • Points (np.ndarray) – Array of x and y coordinates. Array should have shape (2,n).

  • T (bool, default=True) – If True the points array is transposed. Used for arrays with shape (n,2).

  • ax (Axes | None, optional) – Axes to plot onto. If None self.gca() is called.

  • *args – Arguments passed to ax.scatter().

  • **scatterkwargs – Keyword arguments passed to ax.scatter().

Returns:

Collection of scatter paths.