pandas.Series.dt.is_month_start#
- Series.dt.is_month_start[源代码]#
指示日期是否为月份的第一天。
- 返回:
- 系列或数组
对于 Series,返回一个包含布尔值的 Series。对于 DatetimeIndex,返回一个布尔数组。
参见
is_month_start
返回一个布尔值,指示日期是否是该月的第一天。
is_month_end
返回一个布尔值,指示日期是否是该月的最后一天。
例子
此方法在
.dt
访问器下的具有日期时间值的 Series 上可用,并且直接在 DatetimeIndex 上可用。>>> s = pd.Series(pd.date_range("2018-02-27", periods=3)) >>> s 0 2018-02-27 1 2018-02-28 2 2018-03-01 dtype: datetime64[ns] >>> s.dt.is_month_start 0 False 1 False 2 True dtype: bool >>> s.dt.is_month_end 0 False 1 True 2 False dtype: bool
>>> idx = pd.date_range("2018-02-27", periods=3) >>> idx.is_month_start array([False, False, True]) >>> idx.is_month_end array([False, True, False])