xarray.Dataset.rename_dims#
- Dataset.rename_dims(dims_dict=None, **dims)[source]#
Returns a new object with renamed dimensions only.
- Parameters
dims_dict (dict-like, optional) – Dictionary whose keys are current dimension names and whose values are the desired names. The desired names must not be the name of an existing dimension or Variable in the Dataset.
**dims (optional) – Keyword form of
dims_dict
. One of dims_dict or dims must be provided.
- Returns
renamed (
Dataset
) – Dataset with renamed dimensions.