
Get row indices by column of changed values
Source:R/get_comparison.R
get_changed_row_indices_by_column.RdGiven both top-bottom and left-right comparison data frames, this function
determines the row indices for each comparison data frame, by column, that
have changed between df1 and df2
Usage
get_changed_row_indices_by_column(
top_bottom_view,
left_right_view,
comparison_table_diff,
id_cols
)Arguments
- top_bottom_view
a data frame of comparison data where each row in
df1is displayed directly above itsdf2counterpart- left_right_view
a data frame of comparison data where each column in
df1is displayed directly to the left of itsdf2counterpart- comparison_table_diff
a data frame returned by the
comparison_table_diffelement of acompare_df_wrapper()output- id_cols
a character vector of id columns output from
compare_cols()