Launch the data preparation app for the ccviR package. See vignette("data_prep_vignette", package = "ccviR") for details on how to use the app.

run_data_prep(
  file_dir = getwd(),
  launch.browser = TRUE,
  port = getOption("shiny.port"),
  test.mode = FALSE
)

Arguments

file_dir

The directory to locate files from or "demo" to use the demo data included in the package.

launch.browser

logical. Run app in browser?

port

If launch.browser is FALSE, specify port to run CCVI app.

test.mode

Should the app be launched using shiny test.mode. Only set to TRUE for debugging.

Value

A shiny app.

Examples

if(interactive()){
 run_data_prep("demo")
}