modin.pandas.DatetimeIndex.freq

property DatetimeIndex.freq: NoReturn[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/src/snowflake/snowpark/modin/plugin/utils/error_message.py#L85-L94)

Return the frequency object if it’s set, otherwise None.

Examples

>>> idx = pd.date_range("2000-01-01", periods=3, freq="YE")
>>> idx.freq  
<YearEnd: month=12>
Copy
Language: English