snowflake.snowpark.modin.plugin.extensions.resample_overrides.Resampler.asfreq¶
- Resampler.asfreq(fill_value: Optional[Any] = None) Union[DataFrame, Series][source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/modin/plugin/extensions/resample_overrides.py#L298-L317)¶
Return the values at the new freq, essentially a reindex.
- Parameters:
fill_value (scalar, optional) – This parameter is not supported and will raise NotImplementedError.
- Returns:
Values at the specified freq.
- Return type:
See also
Series.asfreqConvert TimeSeries to specified frequency.
DataFrame.asfreqConvert TimeSeries to specified frequency.
Examples