slider_page | R Documentation |
Creates a page where the participant responds by manipulating a slider.
slider_page(
label,
prompt,
min,
max,
value,
save_answer = TRUE,
button_text = "Next",
on_complete = NULL,
admin_ui = NULL,
step = NULL,
round = FALSE,
ticks = TRUE,
animate = FALSE,
width = NULL,
sep = ",",
pre = NULL,
post = NULL,
timeFormat = NULL,
timezone = NULL,
dragRange = TRUE
)
label |
Label for the current page (character scalar). |
prompt |
Prompt to display (character scalar or Shiny tag object). |
min , max |
The minimum and maximum values (inclusive) that can be selected. |
value |
The initial value of the slider, either a number, a date
(class Date), or a date-time (class POSIXt). A length one vector will
create a regular slider; a length two vector will create a double-ended
range slider. Must lie between |
save_answer |
Whether or not to save the answer. |
button_text |
Text for the submit button (character scalar). |
on_complete |
Optional function to execute on leaving the page
(after successful validation).
The argument list should include |
admin_ui |
Optional UI component for the admin panel. |
step |
Specifies the interval between each selectable value on the
slider. Either |
round |
|
ticks |
|
animate |
|
width |
The width of the input, e.g. |
sep |
Separator between thousands places in numbers. |
pre |
A prefix string to put in front of the value. |
post |
A suffix string to put after the value. |
timeFormat |
Only used if the values are Date or POSIXt objects. A time
format string, to be passed to the Javascript strftime library. See
https://github.com/samsonjs/strftime for more details. The allowed
format specifications are very similar, but not identical, to those for R's
|
timezone |
Only used if the values are POSIXt objects. A string
specifying the time zone offset for the displayed times, in the format
|
dragRange |
This option is used only if it is a range slider (with two
values). If |
The RStudio preview function seems not to work for slider pages on some machines.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.