Colorjam R-shiny App for color selection and custom adjustments
additional arguments are passed to shiny::shinyApp()
when the argument name is recognized by shiny::shinyApp()
.
environment
list
passed to shiny::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,
or host="0.0.0.0"
to accept web requests for any host.
port
with specific numeric
web port, or port=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.
logical
indicating whether to print verbose output.
An object that represents the R-shiny app. Printing the
object or passing it to shiny::runApp()
will run the app.
Other colorjam R-shiny functions:
colorjamShinyServer()
if (interactive()) {
launchColorjamShiny();
}