Currently `html` and `xlsx` are supported
create_output_table(
comparison_output,
output_type = "html",
file_name = NULL,
limit = 100,
color_scheme = c(addition = "#52854C", removal = "#FC4E07", unchanged_cell =
"#999999", unchanged_row = "#293352"),
headers = NULL,
change_col_name = "chng_type",
group_col_name = "grp"
)
Output from the comparison Table functions
Type of comparison output. Defaults to `html`
Where to write the output to. Default to NULL which output to the Rstudio viewer (not supported for `xlsx`)
maximum number of rows to show in the diff. >1000 not recommended for HTML
What color scheme to use for the output. Should be a vector/list with
named_elements. Default - c("addition" = "green", "removal" = "red", "unchanged_cell" = "gray", "unchanged_row" = "deepskyblue")
A character vector of column names to be used in the table. Defaults to colnames
.
Name of the change column to use in the table. Defaults to chng_type
.
Name of the group column to be used in the table (if there are multiple grouping vars). Defaults to grp
.