run_flux_qaqc {fluxtools} | R Documentation |
Launch the interactive 'shiny' QA/QC app for flux data
Description
Launch the interactive 'shiny' QA/QC app for flux data
Usage
run_flux_qaqc(offset)
Arguments
offset |
Integer. The site's UTC offset in hours (e.g. -5 for 'UTC-5', +2 for 'UTC+2'). Must be a single integer between -12 and +14; supplying a value outside this range throws an error. |
Value
No return value, called for side effects (it launches the Shiny app).
Examples
# — Quick automated checks —
# These run during R CMD check, but users don’t see them:
try(run_flux_qaqc(-13)) # should print error message
try(run_flux_qaqc(15)) # should print error message
# — Interactive demo (only in an interactive R session) —
if (interactive()) {
run_flux_qaqc(-5) # US Eastern Standard Time ('UTC-5')
}
[Package fluxtools version 0.4.0 Index]