Input Data Frame
DF 1 (example - nrow = 10)
Col A | Col B | Col C
  a       1       2    
  a       3       4    
  b       5       6    
  c       9      10    
DF 2 (example - nrow = 20)
Col A | Col B | Col E
  a       1       22    
  a       31      41    
  a       3       63    
  b       5       6
  b       11      13   
  c       9       20 
I want to create a third data set which contains each of the additional row found in the Data Frame 2 for the Col A and Col B entry.
Output File (nrow = 20-10 = 10)
Col A | Col B | Col E
  a       31      41    
  b       11      13 
 
     
    