I have two DFs having applicationnumber and APPLICATIONNUMBER key. I want to select those rows, where this key does NOT match.
I tried:
df.loc[df['applicationnumber'] not in df_rdm['APPLICATIONNUMBER'].squeeze()]
Helo would be appreciated.
I have two DFs having applicationnumber and APPLICATIONNUMBER key. I want to select those rows, where this key does NOT match.
I tried:
df.loc[df['applicationnumber'] not in df_rdm['APPLICATIONNUMBER'].squeeze()]
Helo would be appreciated.