How to add rows from certain column in a data frame to another column of another data frame. See Example below.
> DF1
  A    B  C
1 3  axe aa
2 6 base bb
3 9  lol cc
> DF2
  D  E   
1 x ss 
2 y dd 
3 z vv 
And I want to add/merge the rows of Column E of DF2 into Column C of DF1. And the other columns' rows should be NA.
> DF3
  A    B   C
1 3   axe  aa
2 6   base bb
3 9   lol  cc
4 NA  NA   ss
5 NA  NA   dd
6 NA  NA   vv
 
     
    