如何使用PANDAS使用PANDAS重新采样一年中的一天'数据(Python)
我的 pandas 数组看起来像这样...
DOY Value
0 5 5118
1 10 5098
2 15 5153
我一直在尝试使用 pandas resample 函数重新采样我的数据并填补空白。我担心的是,由于我尝试在不使用直接日期时间值的情况下重新采样,因此我将无法对数据重新采样。
我尝试使用以下代码行解决此问题,但收到错误消息,指出我正在使用范围索引。也许我需要以某种方式使用周期索引,但我不知道如何去做。
inter.resample('1D').mean().interpolate()
这是我想要的结果
DOY Value
0 5 5118
1 6 5114
2 7 5110
3 8 5106
4 9 5102
5 10 5098
: : :
10 15 5153
My pandas array looks like this...
DOY Value
0 5 5118
1 10 5098
2 15 5153
I've been trying to resample my data and fill in the gaps using pandas resample function. My worry is that since I'm trying to resample without using direct datetime values, I won't be able to resample my data.
My attempt to solve this was using the following line of code but got an error saying I was using Range Index. Perhaps I need to use Period Index somehow, but I'm not sure how to go about it.
inter.resample('1D').mean().interpolate()
Here's my intended result
DOY Value
0 5 5118
1 6 5114
2 7 5110
3 8 5106
4 9 5102
5 10 5098
: : :
10 15 5153
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
转换
to_datetime
,执行重新采样
,然后删除不需要的列:Convert
to_datetime
, perform theresample
and then drop the unwanted column:pd.DataFrame.interpolate
适用于索引。因此,让我们从设置一个适当的索引开始,然后设置一个新的索引,我们将在其上进行插值。pd.DataFrame.interpolate
works on the index. So let's start with setting an appropriate index and then a new one over which we will interpolate.