xarray.DataArray.squeeze

DataArray.squeeze(dim=None)

Return a new DataArray object with squeezed data.

Parameters:

dim : None or str or tuple of str, 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.

Returns:

squeezed : DataArray

This array, but with with all or a subset of the dimensions of length 1 removed.

See also

numpy.squeeze

Notes

Although this operation returns a view of this array’s data, it is not lazy – the data will be fully loaded.