Python Pandas – 返回包括开始时间在内指定时间范围内的DateTimeIndex中值的索引位置
要返回DateTimeIndex中在指定时间范围内的值的索引位置,请使用 DateTimeIndex.indexer_between_time() 方法。将 include_start 参数设置为 True 以包括开始时间。
首先,导入所需库−
import pandas as pd
创建周期为7、频率为T即分钟的DatetimeIndex−
datetimeindex = pd.date_range('2021-10-30 02:30:50', periods=7, tz='Australia/Adelaide', freq='20T')
显示DateTimeIndex−
print("DateTimeIndex...\n", datetimeindex)
显示在特定时间范围内值的索引位置。 “start_time”设置为’02:30:50’, “end_time”设置为’03:20:50’。将include_start参数设置为True−
print("\n在特定时间范围内值的索引位置...\n",
datetimeindex.indexer_between_time('03:10:50','03:50:50', include_start = True))
示例
以下是代码−
import pandas as pd
# DatetimeIndex with period 7 and frequency as T i.e. minutes
# The timezone is Australia/Adelaide
datetimeindex = pd.date_range('2021-10-30 02:30:50', periods=7, tz='Australia/Adelaide', freq='20T')
# display DateTimeIndex
print("DateTimeIndex...\n", datetimeindex)
# display DateTimeIndex frequency
print("\nDateTimeIndex frequency...\n", datetimeindex.freq)
# display index locations of values at particular time of day i.e. 03:10:50 here
print("\n在特定时间范围内值的索引位置...\n",
datetimeindex.indexer_at_time('2021-10-30 03:10:50'))
# display index locations of values between particular time of day
# The "start_time" is set '02:30:50' and "end_time" '03:20:50'
print("\n在特定时间范围内值的索引位置...\n",
datetimeindex.indexer_between_time('03:10:50','03:50:50', include_start = True))
输出
这将产生以下代码−
DateTimeIndex...
DatetimeIndex(['2021-10-30 02:30:50+10:30', '2021-10-30 02:50:50+10:30',
'2021-10-30 03:10:50+10:30', '2021-10-30 03:30:50+10:30',
'2021-10-30 03:50:50+10:30', '2021-10-30 04:10:50+10:30',
'2021-10-30 04:30:50+10:30'],
dtype='datetime64[ns, Australia/Adelaide]', freq='20T')
DateTimeIndex frequency...
<20 * 分钟>
在特定时间范围内值的索引位置...
[2]
在特定时间范围内值的索引位置...
[2 3 4]