pandas.DatetimeIndex.indexer_at_time#

DatetimeIndex.indexer_at_time(time, asof=False)[源代码][源代码]#

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

参数:
时间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”)。

asof布尔值, 默认为 False

此参数目前不受支持。

返回:
np.ndarray[np.intp]

在给定的 time 时刻索引值的位置。

参见

indexer_between_time

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

DataFrame.at_time

选择一天中特定时间的值。

示例

>>> idx = pd.DatetimeIndex(
...     ["1/1/2020 10:00", "2/1/2020 11:00", "3/1/2020 10:00"]
... )
>>> idx.indexer_at_time("10:00")
array([0, 2])