bigframes.geopandas.GeoSeries.bfill#

GeoSeries.bfill(*,limit:int|None=None)Series#

Fill NA/NaN values by using the next valid observation to fill the gap.

Parameters:

limit – int, default NoneIf method is specified, this is the maximum number of consecutiveNaN values to forward/backward fill. In other words, if there isa gap with more than this number of consecutive NaNs, it will onlybe partially filled. If method is not specified, this is themaximum number of entries along the entire axis where NaNs will befilled. Must be greater than 0 if not None.

Returns:

Object with missing values filled.

Return type:

bigframes.pandas.DataFrame orbigframes.pandas.Series or None

On this page

This Page