I have a dataframe of a limited number of rows ~ 500 Max.
I would like to iterate over each row and compare a column's value to the next row.
something like:
for each row in df1
if df1['col1'] of current row == df1['col1'] of current row+1 then drop row
I appreciate your help. Thanks,