This function compares two data frames —`new_df` (the updated version) and `old_df` (the previous version) —to identify differences between them. The comparison can be performed across all shared columns or restricted to a specified subset of columns.
reconcile_without_index(old_df, new_df, lookup_columns = NA)A data frame summarizing differences between `new_df` and `old_df`, including which columns changed and the details of those changes.
A data frame containing the preceding version of the data, used as the reference for comparison.
A data frame containing the most recent version of the data.
A character vector specifying which columns should be used for comparison. By default `NA`, meaning that all columns common to both `new_df` and `old_df` are included. If one or more column names are provided, only those columns will be compared.
Lukasz Andrzejewski