run_glossa {glossa} | R Documentation |
Run GLOSSA Shiny App
Description
This function launches the GLOSSA Shiny web application.
Usage
run_glossa(
request_size_mb = 2000,
launch.browser = TRUE,
port = getOption("shiny.port"),
clear_global_env = FALSE
)
Arguments
request_size_mb |
Maximum request size for file uploads, in megabytes. Default is 2000 MB. |
launch.browser |
Logical indicating whether to launch the app in the browser (default is TRUE). |
port |
Port number for the Shiny app. Uses the port specified by 'getOption("shiny.port")' by default. |
clear_global_env |
Logical. If TRUE, clears the global environment after the app exits. |
Details
The GLOSSA Shiny app provides an interactive interface for users to access GLOSSA functionalities.
Value
No return value, called to launch the GLOSSA app.
Note
Use 'clear_global_env = TRUE' cautiously, as it removes all objects from your R environment after the app exits.
Examples
if(interactive()) {
run_glossa()
run_glossa(clear_global_env = TRUE) # clears all global objects
}
[Package glossa version 1.2.2 Index]