The compareDF R package seems to be a super convenient way to quickly compare two dataframes to see if they’re the same. Or nearly the same, if you prefer.

It’s often as simple as:

comparison <- compare_df(df_new = my_new_dataframe,
                         df_old = dataframe_to_compare_to,
                         group_col = "field_that_identifies_a_unique_row")