modin.pandas.Series.dt.quarter

Series.dt.quarter[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/.tox/docs/lib/python3.9/site-packages/modin/pandas/series_utils.py#L655-L657)

Returns a series of the quarters of the datetime.

Examples

>>> datetime_series = pd.Series(
...     pd.date_range("2000-01-01", periods=3, freq="3ME")
... )
>>> datetime_series
0   2000-01-31
1   2000-04-30
2   2000-07-31
dtype: datetime64[ns]
>>> datetime_series.dt.quarter
0    1
1    2
2    3
dtype: int8
Copy
Language: English