reset_index
- UnitsAwareDataArray.reset_index(dims_or_levels: Hashable | Sequence[Hashable], drop: bool = False) Self
Reset the specified index(es) or multi-index level(s).
This legacy method is specific to pandas (multi-)indexes and 1-dimensional “dimension” coordinates. See the more generic
drop_indexes()
andset_xindex()
method to respectively drop and set pandas or custom indexes for arbitrary coordinates.- Parameters:
dims_or_levels (Hashable or sequence of Hashable) – Name(s) of the dimension(s) and/or multi-index level(s) that will be reset.
drop (bool, default: False) – If True, remove the specified indexes and/or multi-index levels instead of extracting them as new coordinates (default: False).
- Returns:
obj – Another dataarray, with this dataarray’s data but replaced coordinates.
- Return type:
DataArray
See also
DataArray.set_index
,DataArray.set_xindex
,DataArray.drop_indexes