modin.pandas.Series.dt.is_month_end¶
- Series.dt.is_month_end[source]¶
Indicates whether the date is the last day of the month.
- Returns:
For Series, returns a Series with boolean values. For DatetimeIndex, returns a boolean array.
- Return type:
Series or array
See also
is_month_startReturn a boolean indicating whether the date is the first day of the month.
is_month_endReturn a boolean indicating whether the date is the last day of the month.
Examples
This method is available on Series with datetime values under the .dt accessor, and directly on DatetimeIndex.