【发布时间】:2014-09-19 08:43:48
【问题描述】:
在 pandas 中,您可以通过经典的基于整数位置/行的索引或基于日期时间的索引来访问时间序列的特定位置。可以使用基本算术运算来操作基于整数的索引,例如如果我有一个频率为 12 小时的时间序列的 integer_index,并且我想在此之前的一天访问该条目,我可以简单地执行 integer_index - 2。然而,现实世界的数据并不总是完美的,有时会丢失行。在这种情况下,此方法会失败,如果能够使用基于日期时间的索引并从此索引中减去 one day,将会很有帮助。我该怎么做?
示例脚本:
# generate a sample time series
import pandas as pd
s = pd.Series(["A", "B", "C", "D", "E"], index=pd.date_range("2000-01-01", periods=5, freq="12h"))
print s
2000-01-01 00:00:00 A
2000-01-01 12:00:00 B
2000-01-02 00:00:00 C
2000-01-02 12:00:00 D
2000-01-03 00:00:00 E
Freq: 12H, dtype: object
# these to indices should access the same value ("C")
integer_index = 2
date_index = "2000-01-02 00:00"
print s[integer_index] # prints "C"
print s[date_index] # prints "C"
# I can access the value one day earlier by subtracting 2 from the integer index
print s[integer_index - 2] # prints A
# how can I subtract one day from the date index?
print s[date_index - 1] # raises an error
这个问题的背景可以在我之前提交的这里找到:
Fill data gaps with average of data from adjacent days
用户 JohnE 在哪里找到了解决我的问题的方法,该方法使用基于整数位置的索引。他通过重新采样时间序列来确保我拥有等距的数据。
【问题讨论】: