run_app: Launch the dqcheckrGUI Shiny application

View source: R/run_app.R

run_appR Documentation

Launch the dqcheckrGUI Shiny application

Description

Opens the point-and-click interface for configuring and running dqcheckr dataset quality checks.

Usage

run_app(config_dir = NULL, ...)

Arguments

config_dir

Path to the directory that contains (or will contain) ‘dqcheckr.yml’ and individual dataset ‘.yml’ files. Defaults to the DQCHECKR_CONFIG_DIR environment variable when set, otherwise ‘config/’ inside the current working directory. Passing this argument explicitly is recommended when launching from a script so that the correct project folder is used regardless of the R session's working directory.

...

Arguments passed to runApp (e.g. port, launch.browser).

Value

Called for its side effect; does not return a value.

See Also

vignette("dqcheckrGUI", package = "dqcheckrGUI") for a full setup walkthrough. run_dq_check for the underlying check function.

Examples

if (interactive()) {
  run_app()

  # Explicit project folder (recommended from a launcher script)
  # run_app(config_dir = file.path(getwd(), "config"))
}

dqcheckrGUI documentation built on July 25, 2026, 9:06 a.m.