modin.pandas.Resampler.bfill¶
- Resampler.bfill(limit: Optional[int] = None)[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.21.0/src/snowflake/snowpark/modin/pandas/resample.py#L246-L262)¶
Backward fill the new missing values in the resampled data.
- Parameters:
limit (int, optional) – This parameter is not supported and will raise NotImplementedError.
- Returns:
An upsampled Series or
DataFramewith backward filled NaN values.- Return type:
SeriesorDataFrame
Examples