I have a dataframe like this
ID | Performed Time | Reported Time |
---|---|---|
101 | 13:05. | 15.02. |
121 | 14.05. | 16.10. |
101 | 14.20. | 15.02. |
I want to filer rows if the ID and the Reported Time are the same. ie the resultant dataframe should be
ID | Reported Time |
---|---|
101 | 15.02. |
121 | 16.10. |
I tried using groupby to no avail.