gpt4 book ai didi

python - 对齐没有公共(public)索引的 pandas DataFrame

转载 作者:太空宇宙 更新时间:2023-11-04 05:23:48 25 4
gpt4 key购买 nike

我有代表来自两个不同传感器的数据的数据帧:

In[0]: df0
Out[0]:
time foo
0 0.1 123
1 1.0 234
2 2.1 345
3 3.1 456
4 3.9 567
5 5.1 678

In[0]: df1
Out[0]:
time bar
0 -0.9 876
1 -0.1 765
2 0.7 654
3 2.1 543
4 3.0 432

传感器为它们正在监视的每个事件提供度量(foobar)和时间戳(time)。有几点需要注意:

  1. 时间戳很接近,但不完全相同
  2. 收集数据的范围因传感器而异(即它们是独立打开和关闭的)

我正在尝试对齐 df0df1 以获得以下内容:

In[3]: df3
Out[3]:
time_df0 foo time_df1 bar
0 nan nan -0.9 876
1 0.1 123 -0.1 765
2 1.0 234 0.7 654
3 2.1 345 2.1 543
4 3.1 456 3.0 432
5 3.9 567 nan nan
6 5.1 678 nan nan

最佳答案

@Kartik posted a perfect links 开始...

这里是一个起点:

df0.set_index('time', inplace=True)
df1.set_index('time', inplace=True)

In [36]: df1.reindex(df0.index, method='nearest').join(df0)
Out[36]:
bar foo
time
0.1 765 123
1.0 654 234
2.1 543 345
3.1 432 456
3.9 432 567
5.1 432 678

关于python - 对齐没有公共(public)索引的 pandas DataFrame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39475968/

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