suppose I have two data frames (DF1 & DF2) and both contain the (x,y) coordinates. I would like to extract the pair of (x,y) that is in DF1 but not DF2. Example:
DF1<-data.frame(x=1:3,y=4:6,t=10:12)
DF2<-data.frame(x=3:5,y=6:8,s=1:3)
I want to get
DF_new<-data.frame(x=1:2,y=4:5,t=10:11).
What should I do for much larger data sets? Thanks!