Answers for "how to find uncommon records of two dataframes"

0

how to find uncommon records of two dataframes

df = df1.merge(df2, how = 'outer' ,indicator=True).loc[lambda x : x['_merge']=='left_only']

df
Posted by: Guest on March-17-2021

Code answers related to "how to find uncommon records of two dataframes"

Browse Popular Code Answers by Language