#' Create a [`shinyApp`][shiny::shinyApp] object
#'
#' Create a `shinyApp` object for `analyzeBehaviorspace`
#'
#' @param ... Arguments to pass to [`shinyApp()`][shiny::shinyApp()]
#'
#' @return A [`shinyApp`][shiny::shinyApp] object.
#' @examples
#' # ADD_EXAMPLES_HERE
#'
#' @export
#'
app_fn <- function(...) {
shiny_file_size <- getOption("analyzeBehaviorspace.maxFileSize", default = 300)
options(shiny.maxRequestSize = shiny_file_size * 1024^2)
ui <- ui_fn()
server <- server_fn()
shinyApp(ui, server, ...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.