snowflake.snowpark.modin.plugin.extensions.resample_overrides.Resampler.bfill¶
- Resampler.bfill(limit: Optional[int] = None) Union[DataFrame, Series][source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/modin/plugin/extensions/resample_overrides.py#L259-L275)¶
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:
Examples