我有一个以时间为索引的数据帧,我想找到与给定时间最接近的时间匹配的行号。
例如,
import pandas as pd
findtime = pd.Timestamp('2019-12-12 10:19:25', tz='US/Eastern')
start = pd.Timestamp('2019-12-12 0:0:0', tz='US/Eastern')
end = pd.Timestamp('2019-12-13 0:0:0', tz='US/Eastern')
testindex = pd.date_range(start, end, freq='5s')
testindex.get_loc(findtime, method='nearest')
但是,这会引发错误:
UFuncTypeError: ufunc 'subtract' cannot use operands with types dtype('<M8[ns]') and dtype('O')
如果重要的话,这是Windows 10 1909上的python 3.8.1 64位上的Pandas 1.0.1。
我在做什么错了?