To simplify the situation, let’s say I have a 2 dataframes with 2 columns (User_id, User_name) each.
I want to remove the entries that appear in both tables, specifically, I would like to adjust the following to handle multiple columns:
df1=df1[~df1.user_id.isin(df2.user_id)]
Is this doable?