Is there any way to delete rows of duplicated pairs in pandas without taking the order into account?
Dataframe before deleting --> want to delete duplicate pair (yellow colored)
After deleting duplication
example data:
df = pd.DataFrame({'a': [1,2,1,1,2,2],
'b': [2,1,3,4,3,4]
})