I have a dataframe made like this:
  X Y  Z T
  1 2  4 2
  3 2  1 4
  7 5 NA 3
After several steps (not important which one) i obtained this df:
  X Y Z T
  1 2 4 2
  3 2 NA 4
  7 5 NA 3
i want to obtain a new dataframe made by only the rows which didn't change during the steps; the result would be this one:
 X  Y  Z  T
 1  2  4  2
 7  5  NA 3
How could I do?
 
     
     
     
     
    