↧
Answer by mRcSchwering for R Shiny: eventReactive with two controls
By giving a list it seems to work:Serverlibrary(shiny)shinyServer(function(input, output) { view <- eventReactive(list(input$t1, input$t2),{ t1 <- input$t1 t2 <- input$t2 rnorm(1) })...
View ArticleAnswer by Brian Stamper for R Shiny: eventReactive with two controls
I don't think you need eventReactive here - you could just use reactive, and it will respond to either value changing.economics_points <- reactive(get_points(input$daterange, 1,...
View ArticleR Shiny: eventReactive with two controls
I have the following R Shiny code: economics_points <- eventReactive(input$sigmaThresholdSlider, { print("input$sigmaThresholdSlider fired.") get_points(input$daterange, 1,...
View Article