I have a R dataframe that looks something like this:
A B C
14 apple 45
14 bannaa 23
15 car 234
16 door 12
16 ear 325
As you can see, 14 and 16 are repeated. I want:
A B C
14 apple 45
14 bannaa 23
16 door 12
16 ear 325
So far I have table(DF$A) > 1
, but how to/whats the easiest way to do what I want?