Hello I have 2 dataframe such as
df1
COL1 total
A 23
B 76
C 89
D 29
E 9
F 2
df2
COL1 total
A 2
B 9
C 1
D 21
E 5
F 1
And I would like to bind the two dataframe and fusionnate the two total
columns such as :
df3
COL1 total
A 23(2)
B 76(9)
C 89(1)
D 29(21)
E 9(5)
F 2(1)
question from:https://stackoverflow.com/questions/65830093/bind-two-dataframe-in-r-and-fusionnate-two-columns