modin.pandas.DatetimeIndex.quarter¶ property DatetimeIndex.quarter: Index[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/modin/plugin/extensions/datetime_index.py#L214-L216)¶ The quarter of the date. Return type: An Index Containing quarter of the date. Examples CopyExpand>>> idx = pd.DatetimeIndex(["1/1/2020 10:00:00+00:00", ... "2/1/2020 11:00:00+00:00"]) >>> idx.quarter Index([1, 1], dtype='int64') Show lessSee moreScroll to top