I have 2 dataframes which I've imported from a csv file. The first is the reference df with all the answers:
state
0 Alabama
1 Alaska
2 Arizona
While the second df has several lists which contain data which I want to cross check with the first df:
column1 column2
0 Arizona Washington
1 New York New York
2 NaN Utah
I basically would want a third df which shows me in column1 and column2 the missing items compared to my reference df. All I found was to check identical df's for differences. But in my case I have less rows in the second df, as well are the items in a different order.