gpt4 book ai didi

python - 使用日期时间索引插入和填充 pandas 数据框

转载 作者:太空狗 更新时间:2023-10-29 23:54:59 29 4
gpt4 key购买 nike

您好,我正在尝试在我有 datetimeIndex 索引的地方插入一个 Dataframe。

这是数据

res = pd.DataFrame(cursor.execute("SELECT DATETIME,VALUE FROM {} WHERE DATETIME > ? AND DATETIME < ?".format(table),[start,end]).fetchall(),columns=['date','value'])
res.set_index('date',inplace=True)

产生

2013-01-31 00:00:00   517  
2012-12-31 00:00:00 263
2012-11-30 00:00:00 1917
2012-10-31 00:00:00 391
2012-09-30 00:00:00 782
2012-08-31 00:00:00 700
2012-07-31 00:00:00 799
2012-06-30 00:00:00 914
2012-05-31 00:00:00 141
2012-04-30 00:00:00 342
2012-03-31 00:00:00 199
2012-02-29 00:00:00 533
2012-01-31 00:00:00 1393
2011-12-31 00:00:00 497
2011-11-30 00:00:00 1457
2011-10-31 00:00:00 997
2011-09-30 00:00:00 533
2011-08-31 00:00:00 626
2011-07-31 00:00:00 1933
2011-06-30 00:00:00 4248
2011-05-31 00:00:00 1248
2011-04-30 00:00:00 904
2011-03-31 00:00:00 3280
2011-02-28 00:00:00 390
2011-01-31 00:00:00 601
2010-12-31 00:00:00 423
2010-11-30 00:00:00 748
2010-10-31 00:00:00 433
2010-09-30 00:00:00 734
2010-08-31 00:00:00 845
2010-07-31 00:00:00 1693
2010-06-30 00:00:00 2742
2010-05-31 00:00:00 669

这都是不连续的。我想要一个每日值,所以想使用某种插值来填充缺失值。

首先尝试设置索引,然后进行插值。

new_index = pd.date_range(date(2010,1,1),date(2014,1,31),freq='D')
df2 = res.reindex(new_index) # This returns NaN
df2.interpolate('cubic') # Fails with error TypeError: Cannot interpolate with all NaNs.

我希望得到的是一个数据框,每个日期值都在 2010-2014 之间,并根据它周围的点计算出一个插值。

似乎有一种方法可以简单地做到这一点,但我不确定是什么。

最佳答案

这是一种方法。

首先从 df.index 日期的 max min 中获取一个新索引

In [152]: df_reindexed = df.reindex(pd.date_range(start=df.index.min(),
end=df.index.max(),
freq='1D'))

然后对系列使用 interpolate(method='linear') 来获取值。

In [153]: df_reindexed.interpolate(method='linear')                                                                      
Out[153]:
Value
2010-05-31 669.000000
2010-06-01 738.100000
2010-06-02 807.200000
2010-06-03 876.300000
2010-06-04 945.400000
2010-06-05 1014.500000
...
2013-01-25 467.838710
2013-01-26 476.032258
2013-01-27 484.225806
2013-01-28 492.419355
2013-01-29 500.612903
2013-01-30 508.806452
2013-01-31 517.000000

[977 rows x 1 columns]

关于python - 使用日期时间索引插入和填充 pandas 数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30056399/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com