xorbits.pandas.groupby.DataFrameGroupBy.bfill#

DataFrameGroupBy.bfill(limit=None)#

Backward fill the values.

Parameters

limit (int, optional) – Limit of how many values to fill.

Returns

Object with missing values filled.

Return type

Series or DataFrame

See also

Series.bfill

Backward fill the missing values in the dataset.

DataFrame.bfill

Backward fill the missing values in the dataset.

Series.fillna

Fill NaN values of a Series.

DataFrame.fillna

Fill NaN values of a DataFrame.

This docstring was copied from pandas.core.groupby.generic.DataFrameGroupBy.