I have a dataset where I want to check two columns if they have the same values and if there are any unequal rows to show them.
(inte_s['CA']==inte_s['CI']).all()
which returns
False
I tried also:
inte_s['CA][~inte_s['CA'].isin(inte_s['CI'])]
but doesn't work.
How to show the unequal values?