launch_polyglotr_app {polyglotr} | R Documentation |
Launch polyglotr Shiny App
Description
This function launches the Shiny web application for polyglotr, providing a user-friendly interface to access multiple translation services.
Usage
launch_polyglotr_app(launch.browser = TRUE, port = NULL, host = "127.0.0.1")
Arguments
launch.browser |
Logical. Should the app be launched in the default browser? Default is TRUE. |
port |
The port number for the Shiny app. Default is NULL (auto-assign). |
host |
The host IP address. Default is "127.0.0.1". |
Value
Starts the Shiny application. No return value.
Examples
## Not run:
# Launch the app in default browser
launch_polyglotr_app()
# Launch on specific port
launch_polyglotr_app(port = 3838)
# Launch without opening browser
launch_polyglotr_app(launch.browser = FALSE)
## End(Not run)
[Package polyglotr version 1.7.0 Index]