xugrid.plot.scatter#
- xugrid.plot.scatter(topology, darray, **kwargs)[source]#
None
- Parameters:
topology (Union[Ugrid1d, Ugrid2d, Tuple[FloatArray, FloatArray], Triangulation]) – Mesh topology.
darray (DataArray) – Must be two-dimensional, unless creating faceted plots.
figsize (tuple, optional) – A tuple (width, height) of the figure in inches. Mutually exclusive with
size
andax
.aspect (scalar, optional) – Aspect ratio of plot, so that
aspect * size
gives the width in inches. Only used if asize
is provided.size (scalar, optional) – If provided, create a new figure for the plot with the given size: height (in inches) of each plot. See also:
aspect
.ax (matplotlib axes object, optional) – Axes on which to plot. By default, use the current axes. Mutually exclusive with
size
andfigsize
.row (string, optional) – If passed, make row faceted plots on this dimension name.
col (string, optional) – If passed, make column faceted plots on this dimension name.
col_wrap (int, optional) – Use together with
col
to wrap faceted plots.xticks (array-like, optional) – Specify tick locations for x- and y-axis.
yticks (array-like, optional) – Specify tick locations for x- and y-axis.
xlim (array-like, optional) – Specify x- and y-axis limits.
ylim (array-like, optional) – Specify x- and y-axis limits.
xincrease (None, True, or False, optional) – Should the values on the x axis be increasing from left to right? If
None
, use the default for the Matplotlib function.yincrease (None, True, or False, optional) – Should the values on the y axis be increasing from top to bottom? If
None
, use the default for the Matplotlib function.add_colorbar (bool, optional) – Add colorbar to axes.
add_labels (bool, optional) – Use xarray metadata to label axes.
norm (matplotlib.colors.Normalize, optional) – If
norm
hasvmin
orvmax
specified, the corresponding kwarg must beNone
.vmin (float, optional) – Values to anchor the colormap, otherwise they are inferred from the data and other keyword arguments. When a diverging dataset is inferred, setting one of these values will fix the other by symmetry around
center
. Setting both values prevents use of a diverging colormap. If discrete levels are provided as an explicit list, both of these values are ignored.vmax (float, optional) – Values to anchor the colormap, otherwise they are inferred from the data and other keyword arguments. When a diverging dataset is inferred, setting one of these values will fix the other by symmetry around
center
. Setting both values prevents use of a diverging colormap. If discrete levels are provided as an explicit list, both of these values are ignored.cmap (matplotlib colormap name or colormap, optional) – The mapping from data values to color space. If not provided, this will be either be
'viridis'
(if the function infers a sequential dataset) or'RdBu_r'
(if the function infers a diverging dataset). See Choosing Colormaps in Matplotlib for more information. If seaborn is installed,cmap
may also be a seaborn color palette. Note: ifcmap
is a seaborn color palette and the plot type is not'contour'
or'contourf'
,levels
must also be specified.colors (str or array-like of color-like, optional) – A single color or a sequence of colors. If the plot type is not
'contour'
or'contourf'
, thelevels
argument is required.center (float, optional) – The value at which to center the colormap. Passing this value implies use of a diverging colormap. Setting it to
False
prevents use of a diverging colormap.robust (bool, optional) – If
True
andvmin
orvmax
are absent, the colormap range is computed with 2nd and 98th percentiles instead of the extreme values.extend ({'neither', 'both', 'min', 'max'}, optional) – How to draw arrows extending the colorbar beyond its limits. If not provided,
extend
is inferred fromvmin
,vmax
and the data limits.levels (int or array-like, optional) – Split the colormap (
cmap
) into discrete color intervals. If an integer is provided, “nice” levels are chosen based on the data range: this can imply that the final number of levels is not exactly the expected one. Settingvmin
and/orvmax
withlevels=N
is equivalent to settinglevels=np.linspace(vmin, vmax, N)
.infer_intervals (bool, optional) – Only applies to pcolormesh. If
True
, the coordinate intervals are passed to pcolormesh. IfFalse
, the original coordinates are used (this can be useful for certain map projections). The default is to always infer intervals, unless the mesh is irregular and plotted on a map projection.subplot_kws (dict, optional) – Dictionary of keyword arguments for Matplotlib subplots. Only used for 2D and faceted plots. (see
matplotlib:matplotlib.figure.Figure.add_subplot()
).cbar_ax (matplotlib axes object, optional) – Axes in which to draw the colorbar.
cbar_kwargs (dict, optional) – Dictionary of keyword arguments to pass to the colorbar (see
matplotlib:matplotlib.figure.Figure.colorbar()
).**kwargs (optional) – Additional keyword arguments to wrapped Matplotlib function.
- Returns:
The same type of primitive artist that the wrapped Matplotlib function returns.
- Return type:
artist