This function is depreciated because stacking individual JSON tables is no longer
recommended. See vignette("importing-flexfile") for the preferred workflow.
If the functionality is still required, use unnest_df() instead.
stack_ff() reads in a list of lists of FlexFile or Quantity Report tibbles and returns a
single list of stacked tibbles. The data list should not mix report type (i.e.,
it should contain all FlexFiles or all Quantity Reports).
This is a thin wrapper around unnest_df().
stack_ff(data)A list of stacked tibbles.
if (FALSE) { # \dontrun{
folder <- system.file("extdata", package = "flexample")
flexfiles <- read_folder(folder, read_flexfile) %>%
listindex_to_col() %>%
stack_ff()
} # }