Launch the Tooltip Explorer Shiny app
launch.RdConvenience wrapper that calls shiny::shinyApp() with the package's
app_ui() and app_server() functions. Pass any additional arguments
through to shinyApp() (e.g. options = list(port = 4321)).
Arguments
- ...
Additional arguments forwarded to
shiny::shinyApp().
Value
A Shiny app object (invisibly). When called interactively the app opens in the viewer / browser.
Examples
if (FALSE) { # \dontrun{
tooltipexplorer::launch()
# Custom port
tooltipexplorer::launch(options = list(port = 4242, launch.browser = TRUE))
} # }