I have some data below that I\'m using to create a donut chart in R shiny, where date
is a character. I want to be able to select the email whose score I want to vi
You can't access inputs in the ui.R part of the app so you need to use renderUi/uiOutput to dynamically generate your selectInput.
In your ui.R
you could add:
uiOutput("secondSelection")
and in your server.R
:
output$secondSelection <- renderUI({
selectInput("User", "Date:", choices = as.character(dat5[dat5$email==input$Select,"date"]))
})