pandas.DatetimeIndex.indexer_between_time#

DatetimeIndex.indexer_between_time(start_time, end_time, include_start=True, include_end=True)[源代码][源代码]#

返回特定时间段内值的索引位置。

参数:
开始时间, 结束时间datetime.time, str

时间可以作为对象(datetime.time)传递,或者作为适当格式的字符串传递(“%H:%M”, “%H%M”, “%I:%M%p”, “%I%M%p”, “%H:%M:%S”, “%H%M%S”, “%I:%M:%S%p”, “%I%M%S%p”)。

include_start布尔值, 默认为 True

包含边界;是否将起始边界设置为闭合或开放。

include_end布尔值, 默认为 True

包含边界;是否将结束边界设置为闭合或开放。

返回:
np.ndarray[np.intp]

索引特定时间段内值的位置。

参见

indexer_at_time

获取特定时间点的值的索引位置。

DataFrame.between_time

选择特定时间段之间的值。

例子

>>> idx = pd.date_range("2023-01-01", periods=4, freq="h")
>>> idx
DatetimeIndex(['2023-01-01 00:00:00', '2023-01-01 01:00:00',
                   '2023-01-01 02:00:00', '2023-01-01 03:00:00'],
                  dtype='datetime64[ns]', freq='h')
>>> idx.indexer_between_time("00:00", "2:00", include_end=False)
array([0, 1])