Update two sets of radiobuttons reactively - shiny
问题 I have read this (How do I make the choices in radioButtons reactive in Shiny?) which shows me how to update radioButton s in a reactive way. However, when I try and update two sets of buttons from the same data, only one set renders. Example: Server: # Create example data Wafer <- rep(c(1:3), each=3) Length <- c(1,1,2,1,1,1,3,5,1) Width <- c(3,1,6,1,1,1,1,1,6) dd <- data.frame(Wafer, Length, Width) shinyServer(function(input, output, session){ # Create reactive dataframe to store data values