I have a simple question for which I haven't find a solution by far.
In ui.R if the app has a sliderInput widget like following:
sliderInput(inputId="frame",label="Frame ID", min=172, max=356, value=172)
How can I specify the min and max values from the data frame in server.R? The data frame in server.R is subsetted when user selects a value from selectInput widget. For each case I want the min and max to change based on a variable in that data frame.
Is there any example? Please help.