ffi_qaqc {fluxfinder} | R Documentation |
Generate a QA/QC document
Description
Generate a QA/QC document
Usage
ffi_qaqc(
flux_data,
group_column,
output_file = "qaqc.html",
output_dir = getwd(),
open_output = TRUE
)
Arguments
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? |
Value
The path of the output file.
Examples
# 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
# See the introductory vignette for a fully-worked example with real data
[Package fluxfinder version 1.0.0 Index]