Learn R Programming

fluxfinder (version 1.1.0)

ffi_qaqc: 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
)

Value

The path of the output file.

Arguments

flux_data

A data frame from ffi_compute_fluxes or similar

group_column

Name of the grouping label column in flux_data, character; pass NULL to run with no grouping

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?

Examples

Run this code
# Toy data
cars$Plot <- c("A", "B")
fd <- ffi_compute_fluxes(cars, "Plot", "speed", "dist")
x <- ffi_qaqc(fd, group_column = "Plot", output_dir = tempdir())
file.remove(x) # clean up
# See the introductory vignette for a fully-worked example with real data

Run the code above in your browser using DataLab