I have two datasets animal and plants
ANIMAL                            PLANT
OBS  Common  Animal  Number       OBS  Common  Plant     Number
1     a     Ant       5           1     g     Grape       69
2     b     Bird                  2     h     Hazelnut    55
3     c     Cat      17           3     i     Indigo   
4     d     Dog       9           4     j     Jicama      14 
5     e     Eagle                 5     k     Kale         5
6     f     Frog     76           6     l     Lentil      77
I want to concatenate these two into a new dataset.
Below is the desired output
Obs    Common    Animal    Plant       Number
1      a       Ant                      5  
2      b       Bird                     .  
3      c       Cat                     17  
4      d       Dog                      9  
5      e       Eagle                    .  
6      f       Frog                    76  
7      g                 Grape         69  
8      h                 Hazelnut      55  
9      i                 Indigo         .  
10      j                 Jicama        14  
11      k                 Kale           5  
12      l                 Lentil        77 
How to do these kind of concatenate in R?
 
     
     
    