我有一个像
这样的python数据框Out[110]:
Time
2014-09-19 21:59:14 55.975
2014-09-19 21:56:08 55.925
2014-09-19 21:53:05 55.950
2014-09-19 21:50:29 55.950
2014-09-19 21:50:03 55.925
2014-09-19 21:47:00 56.150
2014-09-19 21:53:57 56.225
2014-09-19 21:40:51 56.225
2014-09-19 21:37:50 56.300
2014-09-19 21:34:46 56.300
2014-09-19 21:31:41 56.350
2014-09-19 21:30:08 56.500
2014-09-19 21:28:39 56.375
2014-09-19 21:25:34 56.350
2014-09-19 21:22:32 56.400
2014-09-19 21:19:27 56.325
2014-09-19 21:16:25 56.325
2014-09-19 21:13:21 56.350
2014-09-19 21:10:18 56.425
2014-09-19 21:07:13 56.475
Name: Spread, dtype: float64
延长了很长一段时间(几个月到几年),所以每天观察很多。我想做的是我每天想要检索最接近特定时间的时间序列观察,比如16:00。
到目前为止我的方法已经
eodsearch = pd.DataFrame(df['Date'] + datetime.timedelta(hours=16))
eod = df.iloc[df.index.get_loc(eodsearch['Date'] ,method='nearest')]
目前给我一个错误
"Cannot convert input [Time Date, dtype: datetime64[ns]] of type <class 'pandas.core.series.Series'> to Timestamp
此外,我看到get_loc也接受了容差作为输入,所以如果我能设置容差30分钟也会很好。
有关我的代码失败或如何修复的建议?
答案 0 :(得分:4)
from pandas.tseries.offsets import Hour
df.sort_index(inplace=True) # Sort indices of original DF if not in sorted order
# Create a lookup dataframe whose index is offsetted by 16 hours
d = pd.DataFrame(dict(Time=pd.unique(df.index.date) + Hour(16)))
(i): 使用reindex
支持两种方式查找观察结果: (两种方式兼容)
# Find values in original within +/- 30 minute interval of lookup
df.reindex(d['Time'], method='nearest', tolerance=pd.Timedelta('30Min'))
(ii): 在确定原始DF
中的唯一日期后使用merge_asof
:(向后兼容)
# Find values in original within 30 minute interval of lookup (backwards)
pd.merge_asof(d, df.reset_index(), on='Time', tolerance=pd.Timedelta('30Min'))
(iii): 通过查询和重新索引获取+/-
30分钟带宽间隔的日期:
Index.get_loc
对输入的单个标签进行操作,因此整个系列对象无法直接传递给它。
相反,DatetimeIndex.indexer_between_time
提供位于指定start_time
&amp;内的所有行。每日end_time
指数更适合此目的。 (两个端点都包括在内)
# Tolerance of +/- 30 minutes from 16:00:00
df.iloc[df.index.indexer_between_time("15:30:00", "16:30:00")]
用于获得结果的数据:
idx = pd.date_range('1/1/2017', periods=200, freq='20T', name='Time')
np.random.seed(42)
df = pd.DataFrame(dict(observation=np.random.uniform(50,60,200)), idx)
# Shuffle indices
df = df.sample(frac=1., random_state=42)
的信息:
df.info()
<class 'pandas.core.frame.DataFrame'>
DatetimeIndex: 200 entries, 2017-01-02 07:40:00 to 2017-01-02 10:00:00
Data columns (total 1 columns):
observation 200 non-null float64
dtypes: float64(1)
memory usage: 3.1 KB