xray.Dataset.reindex

Dataset.reindex(copy=True, **indexers)

Conform this object onto a new set of indexes, filling in missing values with NaN.

Parameters:

copy : bool, optional

If copy=True, the returned dataset contains only copied variables. If copy=False and no reindexing is required then original variables from this dataset are returned.

**indexers : dict

Dictionary with keys given by dimension names and values given by arrays of coordinates tick labels. Any mis-matched coordinate values will be filled in with NaN, and any mis-matched dimension names will simply be ignored.

Returns:

reindexed : Dataset

Another dataset, with this dataset’s data but replaced coordinates.