Description Usage Arguments Details Value Examples
select_input()
creates a specified shiny UI input.
1 | select_input(inputId, label, choices, type)
|
inputId |
A shiny input ID |
label |
A label for the input |
choices |
A vector of choices for the input |
type |
The type of input, select for selectInput, multiple for selectInput multiple = TRUE, and checkbox for checkboxGroupInput |
This function allows multiple different types of shiny UI input widgets to be
created depending on the value of type
A shiny widget that allows user to select from a list of choices
1 | select_input("color", "Color By:", c("None", "Temp", "Day/Night"), "select")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.