Launch the analyzeBehaviorspace app in the default web browser. RStudio users also have the option of launching the app in RStudio's pop-up Viewer.

launch_abs(
  rstudio = getOption("analyze_behaviorspace.rstudio", default = FALSE),
  maxFileSize = getOption("analyze_behaviorspace.maxFileSize", default = 300),
  ...
)

Arguments

rstudio

Only relevant for RStudio users. The default (FALSE) is to launch the app in the user's default web browser rather than RStudio's pop-up Viewer. Users can change the default to TRUE by setting the global option options(analyze_behaviorspace.rstudio = TRUE).

maxFileSize

The maximum file size that can be uploaded to the shiny app (in megabytes). The default can be changed by setting the global option analyze_behaviorspace.maxFileSize (options(analyze_behaviorspace.maxFileSize = 1000)).

...

Optional arguments passed to shiny::runApp().

Value

Nothing is returned

Examples

if (FALSE) { # \dontrun{
launch_abs()
} # }