I have 3 dataframes where I have one string column which I want to merge on and 2 similar columns which I want to add up
df1:
JavaScript
x
4
1
index user x y
2
1 john 5 6
3
2 pete 10 10
4
df2:
JavaScript
1
5
1
index user x y
2
1 john 1 1
3
2 pete 2 2
4
3 nash 5 5
5
df3:
JavaScript
1
5
1
index user x y
2
1 nash 6 7
3
2 john 2 4
4
3 kyle 3 3
5
I want: df4:
JavaScript
1
6
1
index user x y
2
1 john 8 11
3
2 pete 12 12
4
3 nash 11 12
5
4 kyle 3 3
6
Advertisement
Answer
try this, first pandas.concat
then groupby
JavaScript
1
4
1
import pandas as pd
2
3
pd.concat([df1, df2, df3]).groupby(["user"], as_index=False)[['x', 'y']].sum()
4
JavaScript
1
6
1
user x y
2
0 john 8 11
3
1 kyle 3 3
4
2 nash 11 12
5
3 pete 12 12
6