modin.pandas.Series.dt.is_quarter_end¶
- Series.dt.is_quarter_end[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/.tox/docs/lib/python3.9/site-packages/modin/pandas/series_utils.py#L682-L684)¶
Indicator for whether the date is the last day of a quarter.
- Returns:
is_quarter_end – The same type as the original data with boolean values. Series will have the same name and index. DatetimeIndex will have the same name.
- Return type:
See also
quarterReturn the quarter of the date.
is_quarter_startSimilar property indicating the quarter start.
Examples
This method is available on Series with datetime values under the .dt accessor, and directly on DatetimeIndex.