flatten_data.quantityreport() creates a single flat file for working with the Quantity Data Report. Input should be a list of one or more Quantity Data Reports imported through the read_flexfile function.

# S3 method for class 'quantityreport'
flatten_data(x, ...)

Arguments

x

A list of one or more collections of data frames to be flattened.

...

Arguments passed on to methods.

Examples

if (FALSE) { # \dontrun{
# Flatten one Quantity Report
file <- system.file("extdata", "Sample_Quantity_A.zip", package = "flexample")

flat_flex_file <- read_flexfile(file) %>%
  flatten_data()
} # }