snowflake.snowpark.modin.plugin.extensions.resample_overrides.Resampler.asfreq¶
- Resampler.asfreq(fill_value: Optional[Any] = None) Union[DataFrame, Series][source]¶
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