modin.pandas.Series.dt.is_quarter_start¶
- Series.dt.is_quarter_start[source]¶
Indicator for whether the date is the first day of a quarter.
- Returns:
is_quarter_start – 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_endSimilar property for indicating the quarter end.
Examples
This method is available on Series with datetime values under the .dt accessor, and directly on DatetimeIndex.