Select Rows in a Data Frame that do not match

PHOTO EMBED

Sun Mar 07 2021 02:05:35 GMT+0000 (Coordinated Universal Time)

Saved by @Checkmate363 #r

# make data frame 
a <- data.frame( x =  c(1,2,3,4)) 
b <- data.frame( y =  c(1,2,3,4,5,6))
subset(b, !(y %in% a$x)) #Pulls values from frame b that are not in frame a
content_copyCOPY

https://stackoverflow.com/questions/5812478/how-i-can-select-rows-from-a-dataframe-that-do-not-match