I have a slider input type of 'range' in my Shiny app and I would like to get the minimum and maximum values selected by the user in my server.R
in my ui.R I have
sliderInput("range", "Age:",
min = 0, max = 100, value = c(0,100))
and I would like to get the selected values not min and max that I have defined