ffi_qaqc | R Documentation |
Generate a QA/QC document
ffi_qaqc(
flux_data,
group_column,
output_file = "qaqc.html",
output_dir = getwd(),
open_output = TRUE
)
flux_data |
A data frame from |
group_column |
Name of the grouping label column in |
output_file |
Name of the output file |
output_dir |
Name of the output directory; default is current working directory |
open_output |
Automatically open the output HTML file? |
The path of the output file.
# We don't run this example because of tempfile errors on CRAN,
# but it works fine otherwise!
## Not run:
# Toy data
cars$Plot <- c("A", "B")
fd <- ffi_compute_fluxes(cars, "Plot", "speed", "dist")
x <- ffi_qaqc(fd, group_column = "Plot")
file.remove(x) # clean up
## End(Not run)
# See the introductory vignette for a fully-worked example with real data
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.