CCR/.venv/lib/python3.12/site-packages/xarray/plot/__init__.py

37 lines
574 B
Python

"""
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",
]