R/psa_shiny.R

Defines functions psa_simulation_shiny psa_shiny

Documented in psa_shiny psa_simulation_shiny

#' Run the PSA shiny application.
#' 
#' @param ... other parameters passed to [shiny::runApp].
#' @export
psa_shiny <- function(...) {
	shiny::runApp(
		appDir = paste0(find.package(package='psa'), '/shiny/psa'),
		...)
}

#' Run the PSA simulation shiny application.
#' 
#' @param ... other parameters passed to [shiny::runApp].
#' @export
psa_simulation_shiny <- function(...) {
	shiny::runApp(
		appDir = paste0(find.package(package='psa'), '/shiny/psa_simulation'),
		...)
}
jbryer/psa documentation built on Nov. 17, 2023, 8:21 a.m.