bigframes.pandas.Series.reindex#
- Series.reindex(index=None, *, validate: bool | None = None)[source]#
Conform Series to new index with optional filling logic.
Places NA/NaN in locations having no value in the previous index. A new object is produced unless the new index is equivalent to the current one and
copy=False.- Parameters:
index (array-like, optional) – New labels for the index. Preferably an Index object to avoid duplicating data.
- Returns:
Series with changed index.
- Return type: