I have this data frame DF1
emp_no  no_children  status
  1      3            3
  2      2            2
  23     5            5
And another DF2
emp_no  no_children  status
      1      3            3
      2      2            2
      3      5            5
I am trying to create a new dataframe based on DF1 and DF2 e.g
emp_no no_children status
  23     5         5
the new DF should contain emp_no not in DF2


