Suppose I have two data frames, Dat1 and Dat2,
Dat1
Col1 Col2 Col3
A1    56   89
and
Dat2
Col1 Col2 Col4 Col5
A2   49    84   F11
Finally I want to have a combined data frame which looks like
Col1 Col2 Col3 Col4 Col5
A1    56   89   NA    NA
A2    49   NA   84    F11
Is it possible to achieve this in R?
 
     
     
    