在Python中添加来自不同数据框的列

时间:2019-02-19 17:03:45

标签: python pandas dataframe

我有以下两个数据框:

enter image description here

我想将Df2的元素添加到Df1。

enter image description here

我正在使用:

Df1['A'] = Df1['A'].add(Df2.loc[:, 'A'])

但是,它不起作用。

0 个答案:

没有答案