shiny sliderInput from max to min
问题 Is it possible to make a sliderInput that shows the values in decreasing order (from left to right; eg. 5 4 3 2 1)? runApp( list( ui = fluidPage( sliderInput("test","", min=5, max=1, value = 3, step=1) ), server = function(input,output) {} ) ) 回答1: EDIT 2017-10-13: This function is now available in package shinyWidgets (with a different name : sliderTextInput() ). Hi you can write your own slider function like this (it's a little dirty...) : sliderValues <- function (inputId, label, values,