R/shiny_app.R

Defines functions ignore_unused_imports run_hidecan_shiny

Documented in run_hidecan_shiny

#' Launches the HIDECAN shiny app
#'
#' Starts the HIDECAN shiny app. The app reads in csv data to produce
#' a HIDECAN plot.
#'
#' @returns No return value, called for side effects (launching the shiny app).
#'
#' @export
run_hidecan_shiny <- function(){
  app_dir <- system.file("shiny_apps/hidecan_shiny.R", package = "hidecan")

  shiny::runApp(app_dir, display.mode = "normal")
}

## To get rid of the check NOTE
ignore_unused_imports <- function(){
  vroom::vroom
}

Try the hidecan package in your browser

Any scripts or data that you put into this service are public.

hidecan documentation built on Feb. 16, 2023, 6:22 p.m.