fastret_app {FastRet} | R Documentation |
The FastRet GUI
Description
This function creates the FastRet GUI
Usage
fastret_app(port = 8080, host = "0.0.0.0", reload = FALSE, nsw = 0)
Arguments
port |
The port the application should listen on |
host |
The address the application should listen on |
reload |
Whether to reload the application when the source code changes |
nsw |
The number of subworkers each worker is allowed to start. The higher this number, the faster individual tasks like model fitting can be processed. |
Value
A shiny app. This function returns a shiny app that can be run to interact with the model.
An object of class shiny.appobj
.
Examples
x <- fastret_app()
if (interactive()) shiny::runApp(x)
[Package FastRet version 1.1.3 Index]