xarray.Dataset.drop_dims#
- Dataset.drop_dims(drop_dims, *, errors='raise')[source]#
Drop dimensions and associated variables from this dataset.
- Parameters:
drop_dims (
str
orIterable
ofHashable
) – Dimension or dimensions to drop.errors (
{"raise", "ignore"}
, default:"raise"
) – If ‘raise’, raises a ValueError error if any of the dimensions passed are not in the dataset. If ‘ignore’, any given dimensions that are in the dataset are dropped and no error is raised.
- Returns:
obj (
Dataset
) – The dataset without the given dimensions (or any variables containing those dimensions).