Skip to content

miracum/dqa-dqagui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e3d80f5 · Feb 7, 2025
May 16, 2024
Feb 7, 2025
Feb 7, 2025
Feb 7, 2025
Feb 7, 2025
Feb 7, 2025
Feb 7, 2025
Feb 7, 2025
Feb 7, 2025
Jun 20, 2022
Feb 7, 2025
Aug 7, 2019
Oct 30, 2023
Feb 7, 2025
Feb 7, 2025
Feb 7, 2025
Aug 30, 2023
Feb 7, 2025
Jun 4, 2020

Repository files navigation

DQAgui

Warning: `git_branch_default()` was deprecated in usethis 2.1.0.
ℹ Please use `git_default_branch()` instead.
ℹ The deprecated feature was likely used in the badger package.
  Please report the issue at <https://github.com/GuangchuangYu/badger/issues>.

CRAN checks Dependencies R build status R build status R build status

This is the repository of the R package ‘DQAgui’. It provides a graphical user interface to the functionalities implemented in DQAstats.

Installation

You can install DQAgui with:

install.packages("remotes")
remotes::install_github("miracum/dqa-dqagui")

Configuration

The database connection can be configured using environment variables. These can be set using the base R command Sys.setenv().

A detailed description, which environment variables need to be set for the specific databases can be found here.

Example

This is a basic example to demonstrate how to perform the data quality assessment with DQAgui:

library(DQAgui)

# define base paths for shinyFiles::shinyDirChoose
Sys.setenv(
  "CSV_SOURCE_BASEPATH" = system.file("demo_data", package = "DQAstats")
)
Sys.setenv(
  "CSV_TARGET_BASEPATH" = system.file("demo_data", package = "DQAstats")
)

# define path to utilities-folder
utils_path <- system.file("demo_data/utilities",
                         package = "DQAstats")

# filename of the metadata repository
mdr_filename <- "mdr_example_data.csv"

# directory for storing logfiles
logfile_dir <- tempdir()

launch_app(
  port = 3838,
  utils_path = utils_path,
  mdr_filename = mdr_filename,
  logfile_dir = logfile_dir
)

To open the shiny application in your web-browser, go to localhost:3838.

Demo Usage / Deployment Examples

You can test the package without needing to install anything except docker. 💡 For further details, see the Wiki.

More Infos