R/gui_models.R

Defines functions gui_models

Documented in gui_models

#' Start GUI with seismic models
#' 
#' This function starts a browser-based graphic user interface to explore the 
#' parameter space of seismic models that predict the spectra of turbulent 
#' water flow and bedload flux.
#' 
#' @param ... further arguments to pass to \code{\link{runApp}}
#' 
#' @author Michael Dietze
#' @seealso \code{\link{runApp}}
#' @examples 
#' 
#' \dontrun{
#' # Start the GUI
#' gui_models()
#' }
#' 
#' @export gui_models
gui_models <- function(...) {
  app <- shiny::runApp(system.file("shiny/models", 
                                   package = "eseis"), 
                       launch.browser = TRUE, 
                       ...)
}

Try the eseis package in your browser

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

eseis documentation built on Aug. 10, 2023, 5:08 p.m.