incomplete_df %>%
  anti_join(complete_df, by = "column_2b_sorted") #returns rows mising in incomplete_df

#If column names are not the same:
incomplete_df %>%
  anti_join(complete_df, by = c("column_2b_sorted_incomplete" = "column_2b_sorted_complete")