Function sliderUI creates a shiny module UI.

Function slider creates a slider module server function.

sliderUI(id)

slider(input, output, session, ...)

Arguments

id

An id string that corresponds with the id used to call the module's UI function.

input

shiny server input object

output

shiny server output object

session

shiny server session object

...

Additional arguments passed to sliderInput.

Value

None. Invoked for the side-effect of creating a shiny UI.

Reactive value with the current value on the slider.

See also

sliderInput