I'm new with R, and would like to do some basic things. I have three data frames with a column with the same name. In each data frame a different value is registered. (In my real data there are more values and off course NA)
Df1
Value
A 1
B NA
C NA
D NA
Df2
Value
A NA
B NA
C 2
D NA
Df3
Value
A NA
B NA
C NA
D 3
I want to combine the three data frames so I can complete the column. So I get this:
Df
Value
A 1
B NA
C 2
D 3
How can I do this in R?
Thank you.