Colorjam R-shiny App for color selection and custom adjustments
Arguments
- ...
additional arguments are passed to
shiny::shinyApp()when the argument name is recognized byshiny::shinyApp().- envir
environment- options
listpassed toshiny::shinyApp(). The most common options are:hostwith either a specific IP address which then requires all incoming web requests to match that IP address, orhost="0.0.0.0"to accept web requests for any host.portwith specificnumericweb port, orport=NULLto assign a random port number when the R-shiny app is started.widthwith a user-configurable width for the R-shiny app, useful when graphical components should expect at least a minimum width.
- verbose
logicalindicating whether to print verbose output.
Value
An object that represents the R-shiny app. Printing the
object or passing it to shiny::runApp() will run the app.
See also
Other colorjam R-shiny functions:
colorjamShinyServer()
Examples
if (interactive()) {
launchColorjamShiny();
}