Split an extra-wide table into multiple tables

render_lg_table(
  report_flextable = NULL,
  essential_columns = NULL,
  rda_dir = NULL,
  plot_name = NULL
)

Arguments

report_flextable

The extra-wide flextable.

essential_columns

The columns that will be retained between the split tables, formatted as a sequence (e.g., 1:2 for columns 1-2, or 1 for a single column. Example: for the indices table, this could be the year column.

Value

A list of the split tables.

Examples

if (FALSE) { # \dontrun{
render_lg_table(
report_flextable = indices_table,
essential_columns = 1,
rda_dir = here::here(),
plot_name = "indices.abundance_table.rda")

render_lg_table(
report_flextable = important_table,
essential_columns = 1:3,
rda_dir = "data",
plot_name = "bnc_table.rda")
} # }