xarray.DataArray.reorder_levels

DataArray.reorder_levels(dim_order: Optional[Mapping[Hashable, Sequence[int]]] = None, inplace: Optional[bool] = None, **dim_order_kwargs) → Optional[xarray.core.dataarray.DataArray]

Rearrange index levels using input order.

Parameters
dim_orderoptional

Mapping from names matching dimensions and values given by lists representing new level orders. Every given dimension must have a multi-index.

inplacebool, optional

If True, modify the dataarray in-place. Otherwise, return a new DataArray object.

**dim_order_kwargs: optional

The keyword arguments form of dim_order. One of dim_order or dim_order_kwargs must be provided.

Returns
objDataArray

Another dataarray, with this dataarray’s data but replaced coordinates. If inplace == True, return None.