xarray.DataArray.transpose

DataArray.transpose(*dims, transpose_coords: Optional[bool] = None) → xarray.core.dataarray.DataArray

Return a new DataArray object with transposed dimensions.

Parameters:

*dims : hashable, optional

By default, reverse the dimensions. Otherwise, reorder the dimensions to this order.

transpose_coords : boolean, optional

If True, also transpose the coordinates of this DataArray.

Returns:

transposed : DataArray

The returned DataArray’s array is transposed.

See also

numpy.transpose, Dataset.transpose

Notes

This operation returns a view of this array’s data. It is lazy for dask-backed DataArrays but not for numpy-backed DataArrays – the data will be fully loaded.