xarray.Dataset.drop_dims

Dataset.drop_dims(drop_dims, *, errors='raise')

Drop dimensions and associated variables from this dataset.

Parameters
drop_dimsstr or list

Dimension or dimensions to drop.

Returns
objDataset

The dataset without the given dimensions (or any variables containing those dimensions)

errors: {‘raise’, ‘ignore’}, optional

If ‘raise’ (default), 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.