Package 'dqcheckrGUI'

Title: Point-and-Click GUI Client for 'dqcheckr'
Description: A graphical user interface for the 'dqcheckr' package. Provides a point-and-click 'shiny' application for configuring dataset quality checks, running them against recurring file deliveries, and browsing historical check results — without writing any R code.
Authors: Mick Mioduszewski [aut, cre]
Maintainer: Mick Mioduszewski <[email protected]>
License: MIT + file LICENSE
Version: 0.2.2.9000
Built: 2026-07-19 08:03:17 UTC
Source: https://github.com/mickmioduszewski/dqcheckrgui

Help Index


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"))
}