A list that is defined in the server logic should be used for a drop down.
The following code should show the idea.
# server.R
shinyServer(function(input, output, session) {
output$models <- c("a","b","c")
...
})
#ui.R
require(rCharts)
...
shinyUI(pageWithSidebar(
...
sidebarPanel(
selectInput("select", "Your choice:", [models]),
...
))
Is it possible to make this work? Maybe some plain text output, similar to renderText(models).
uiOutput. - Ramnath