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
list
passed toshiny::shinyApp()
. The most common options are:host
with 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.port
with specificnumeric
web port, orport=NULL
to assign a random port number when the R-shiny app is started.width
with a user-configurable width for the R-shiny app, useful when graphical components should expect at least a minimum width.
- verbose
logical
indicating 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();
}