I have 2 data frames df1 and df2.
df1
df2
df1 <- data.frame(c1=c(\"a\",\"b\",\"c\",\"d\"),c2=c(1,2,3,4) ) df2 <- data.frame(c1=c(\"
I think the simplest solution is with dplyr (tidyverse).
require(tidyverse) anti_join(df1, df2)