xarray.DataArray.transpose

DataArray.transpose(*dims, transpose_coords=True)

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 (bool, default: True) – If True, also transpose the coordinates of this DataArray.

Returns

transposed – The returned DataArray’s array is transposed.

Return type

DataArray

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.