bigframes.geopandas.GeoSeries.reindex#

GeoSeries.reindex(index=None, *, validate: bool | None = None)#

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:

Series