checkboxInput {shiny} | R Documentation |
Create a checkbox that can be used to specify logical values.
checkboxInput(inputId, label, value = FALSE, width = NULL)
inputId |
The |
label |
Display label for the control, or |
value |
Initial value ( |
width |
The width of the input, e.g. |
A checkbox control that can be added to a UI definition.
checkboxGroupInput
, updateCheckboxInput
Other input.elements: actionButton
,
checkboxGroupInput
,
dateInput
, dateRangeInput
,
fileInput
, numericInput
,
passwordInput
, radioButtons
,
selectInput
, sliderInput
,
submitButton
, textInput
checkboxInput("outliers", "Show outliers", FALSE)