I have a dataset in R which looks like this:
x1 x2 x3
1: A Away 2
2: A Home 2
3: B Away 2
4: B Away 1
5: B Home 2
6: B Home 1
7: C Away 1
8: C Home 1
Based on the values in columns x1 and x2, I want to remove the duplicate rows. I have tried the following:
df[!duplicated(df[,c('x1', 'x2')]),]
It should remove rows 4 and 6. But unfortunately it is not working, as it returns exactly the same data, with the duplicates still present in the dataset. What do I have to use in order to remove rows 4 and 6?