I have a data.frame A and a data.frame B which contains a subset of A
How can I create a data.frame C which is data.frame A with data.frame B excluded? Thanks for your h
get the rows in A that aren't in B
C = A[! data.frame(t(A)) %in% data.frame(t(B)), ]