I am having problem on merging multiple dataframes in R, like:
table1:
NAME A1
a 1
b 2
c 3
table2:
NAME A2
a 10
b 20
d 30
table3:
NAME A3
a 100
b 200
e 400
I would like to merge these tables by "NAME", adding the new values and assign "0" to missing value, like:
merged table:
NAME A1 A2 A3
a 1 10 100
b 2 20 200
c 3 0 0
d 0 30 0
e 0 0 400
Any suggestion will be help!! Thanks a lot!!!

mergeing them together.