I was wondering what the best way might be to remove all rows from a dataframe if the values in a field were = to values in a different df.
I have df_1 and df_2. df_2 contains a field called id that contains only ids that I want to remove from df_1 can I perform this doing something thats similar to a merging of df but instead of merging just remove or drop all rows that match df_2?
Thanks :)