1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
"""
Use this module directly:
import xarray.plot as xplt
Or use the methods on a DataArray or Dataset:
DataArray.plot._____
Dataset.plot._____
"""
from xarray.plot.dataarray_plot import (
contour,
contourf,
hist,
imshow,
line,
pcolormesh,
plot,
step,
surface,
)
from xarray.plot.dataset_plot import scatter
from xarray.plot.facetgrid import FacetGrid
__all__ = [
"FacetGrid",
"contour",
"contourf",
"hist",
"imshow",
"line",
"pcolormesh",
"plot",
"scatter",
"step",
"surface",
]
|