I have two dataframes A and B, with 40k and 110k observations on the same variable, ID. I want to create C, which is all rows which are in A but not in B and nor at the intersection. Trying
ans <- dplyr::left_join(A,B, by "ID")
If I use a left join, I will have about 40K rows.But the right result is around 200 rows. Any hint?