I have two tables one with more rows than the other. I would like to filter the rows out that both tables share. I tried the solutions proposed here.
The problem, however, is that it is a large data-set and computation takes quite a while. Is there any simple solution? I know how to extract the shared rows of both tables using:
rownames(x1)->k
rownames(x)->l
which(rownames(x1)%in%l)->o
Here x1 and x are my data frames. But this only provides me with the shared rows. How can I get the unique rows of each table to then exclude them respectively? So that I can just cbind both tables together?
merge()these data frames? Also, if the data frames are large, you could use packagedata.tableto perform very quick join operations. – Andrie Jul 26 '12 at 9:45sort, and thenuniq -d. – DiscreteCircle Jul 26 '12 at 9:51