I have a dataframe which contains duplicates values according to four columns (SFDC_ID and left_side and right_SFDC_ID and right_side and similairity):
Right now SFDC_ID and right_SFDC_ID are duplicating in the following way:
SFDC_ID left_side right_SFDC_ID right_side similairity
0013s00000vEVuwAAG Hague Quality Water 0013s00000vEW72AAG Hague Quality Waters 0.99023304
0013s00000vEW72AAG Hague Quality Waters 0013s00000vEVuwAAG Hague Quality Water 0.99023304
If you look closely, the SFDC_ID of row 1 is the same as right_SFDC_ID of row 2.
How would I drop the second-row using pandas?