#' Run a Web User Interface
#'
#' Run a Shiny application locally to analyse an xlsx file.
#'
#' @export
app_run <- function() {
# Supress Shiny's auto-load behaviour
old <- options(shiny.autoload.r = FALSE)
on.exit(options(old), add = TRUE)
addResourcePath('img', system.file('app/img', package = 'evavelo'))
shiny::shinyApp(
ui = app_ui,
server = app_server
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.