xarray.plot.plot#
- xarray.plot.plot(darray, *, row=None, col=None, col_wrap=None, ax=None, hue=None, subplot_kws=None, **kwargs)[source]#
Default plot of DataArray using
matplotlib.pyplot
.Calls xarray plotting function based on the dimensions of the squeezed DataArray.
Dimensions
Plotting function
1
2
Anything else
- Parameters
darray (
DataArray
)row (
Hashable
orNone
, optional) – If passed, make row faceted plots on this dimension name.col (
Hashable
orNone
, optional) – If passed, make column faceted plots on this dimension name.col_wrap (
int
orNone
, optional) – Use together withcol
to wrap faceted plots.ax (
matplotlib axes object
, optional) – Axes on which to plot. By default, use the current axes. Mutually exclusive withsize
,figsize
and facets.hue (
Hashable
orNone
, optional) – If passed, make faceted line plots with hue on this dimension name.subplot_kws (
dict
, optional) – Dictionary of keyword arguments for Matplotlib subplots (seematplotlib.figure.Figure.add_subplot()
).**kwargs (optional) – Additional keyword arguments for Matplotlib.
See also