I have a data frame like this:
id info
1 0
1 0
2 0
2 10
3 20
3 20
I want to remove the rows for all "id"s that have no change in their "info", that is, remove all rows where the "info" is identical for a certain "id".
For the example above, I would end up:
id info
2 0
2 10