本文介绍了在Pandas Python中组合两个数据框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想合并两个数据框

我想将两个数据框组合在一起,以使帐户相同.

I would like to combine both the dataframes such a way that the accts are the same.

例如,acct 10应该为CME和NISSAN中的值,而其余均为零.

For eg, acct 10 should values in CME and NISSAN while the rest are zeros.

推荐答案

我认为您可以使用 df.combine_first() :

I think you can use df.combine_first():

df2.combine_first(df1)

此外,您可以尝试:

pd.concat([df1.set_index('acct'),df2.set_index('acct')],axis=1).reset_index()

这篇关于在Pandas Python中组合两个数据框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 16:10