For example, I have 2 dataframes with 2 columns:
df1 df2
AAA BBB AAA KKK
BBB CCC BBB LLL
CCC FFF CCC FFF
DDD None None None
I want to spot whats on df1 is not in df2, then the result is DDD
(exclude None). How can I achieve this?