sorry for the dumb question I am new to python and pandas.
Imagine I've got a csv file with some data for every row, for example :
data1, data2, data3, data4
There are no headings, just data, and I need to remove some rows inside such file if
(row1.data3 and row1.data4) == (row2.data3 and row2.data4)
the entire row gets removed.
How can I achieve that?
I did try to use remove_duplicates but without headings I don't know how to do it.
cheers