Even thought there are many topics dealing with the properties of the sliderInput in Shiny, I couldn't find a solution to what I'm trying to do.
My problem is simple: I would like to adapt my code (see below) in order to create a slider with an interval of "10" (from 0 to 10, 10 to 20, 3 to 13 etc...)
###running example:
ui <-basicPage(
sliderInput("id", "Ranking",
min = 2, max = 60, value = c(2,15)))
server <- server <- function(input, output) {}
shinyApp(ui, server)
Any ideas please ?
