I want to compare two data frames and check if there are duplicated rows. We assume that the order of columns doesn't matter so if df1 looks like that:
V2 V3
71 78
90 13
12 67
56 32
and df2 like that:
V2 V3
89 45
77 88
78 71
90 13
Then the non duplicated rows from both df will be:
12 67
56 32
89 45
77 88
How can I achieve this goal in easy way?