gpt4 book ai didi

python - pandas:将两个 DataFrame 与排序的 MultiIndex 连接起来,使得结果具有排序的 MultiIndex

转载 作者:行者123 更新时间:2023-12-01 09:26:07 28 4
gpt4 key购买 nike

请让我知道如何将两个 DataFrame 与排序的 MultiIndexes 连接起来,以便结果具有排序的 MultiIndex。

由于两者都是排序的,算法必须根据两个 DataFrame 中的总行数具有线性复杂性(这是合并 2 个排序列表的复杂性,这实际上是问题就在这里)。

示例:

import pandas as pd
t1 = pd.DataFrame(data={'i1':[0,0,1,1,2,2],
'i2':[0,1,0,1,0,1],
'x':[1.,2.,3.,4.,5.,6.]})
t1.set_index(['i1','i2'], inplace=True)
t1.sort_index(inplace=True)
t2 = pd.DataFrame(data={'i1':[0,0,1,1,2,2],
'i2':[2,3,2,3,2,3],
'x':[7.,8.,9.,10.,11.,12.]})
t2.set_index(['i1','i2'], inplace=True)
t2.sort_index(inplace=True)
>>> print(t1)
x
i1 i2
0 0 1.0
1 2.0
1 0 3.0
1 4.0
2 0 5.0
1 6.0

>>> print(t2)
x
i1 i2
0 2 7.0
3 8.0
1 2 9.0
3 10.0
2 2 11.0
3 12.0

预期结果:

          x
i1 i2
0 0 1.0
1 2.0
2 7.0
3 8.0
1 0 3.0
1 4.0
2 9.0
3 10.0
2 0 5.0
1 6.0
2 11.0
3 12.0

感谢您的帮助!

最佳答案

这是一个候选答案。我仍在努力确认其算法效率。如果您有意见,请评论:

def linConcat(t1, t2):
t = t1.reindex( index=t1.index.union(t2.index) )
t.loc[t2.index,:] = t2
return t
>>> linConcat(t1, t2)
x
i1 i2
0 0 1.0
1 2.0
2 7.0
3 8.0
1 0 3.0
1 4.0
2 9.0
3 10.0
2 0 5.0
1 6.0
2 11.0
3 12.0

关于python - pandas:将两个 DataFrame 与排序的 MultiIndex 连接起来,使得结果具有排序的 MultiIndex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50380093/

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