xarray.DataArray.squeeze¶
-
DataArray.squeeze(dim=None, drop=False, axis=None)¶ Return a new object with squeezed data.
- Parameters
dim (
NoneorHashableor iterable ofHashable, optional) – Selects a subset of the length one dimensions. If a dimension is selected with length greater than one, an error is raised. If None, all length one dimensions are squeezed.drop (
bool, optional) – Ifdrop=True, drop squeezed coordinates instead of making them scalar.axis (
Noneorintor iterable ofint, optional) – Like dim, but positional.
- Returns
squeezed – This object, but with with all or a subset of the dimensions of length 1 removed.
- Return type
same type as caller
See also