闪亮的物体对几个输入(按钮)的反应

时间:2017-02-14 20:03:15

标签: r shiny observers reactive

我有一个shinyapp,其中主要对象应该根据其他对象/输入的更改(执行其他操作的按钮,其结果不易被跟踪,例如在线数据)进行更新。这就是我必须使用按钮输入的原因。有没有办法更新主对象而无需为每个按钮重写代码?在我的例子中,我不得不两次使用observeEvent:

library(datasets)
library(shiny)

ui<-fluidPage(    
  titlePanel("Telephones by region"),
  sidebarLayout(      
    sidebarPanel(
      selectInput("region", "Region:", 
                  choices=colnames(WorldPhones)),
      helpText("Data from AT&T (1961) The World's Telephones."),
      actionButton("submit", 
                   label = "submit"), # this also has other functions
      actionButton("change", 
                   label = "change")  # this also has other functions
    ),
    mainPanel(
      plotOutput("phonePlot")  
    )
  )
)
server<-function(input, output) {
data<-reactiveValues()

observeEvent(input$submit,{
  data$data<-WorldPhones[,input$region]
  })
observeEvent(input$change,{
  data$data<-WorldPhones[,input$region]
})
output$phonePlot <- renderPlot({
   if(!is.null(data$data))
    barplot(data$data*1000, 
            ylab="Number of Telephones",
            xlab="Year")
  })
}
shinyApp(ui = ui, server = server)

1 个答案:

答案 0 :(得分:0)

您只需使用两个按钮创建表达式,例如使用c()

observeEvent(c(input$submit,input$change),{
  data$data<-WorldPhones[,input$region]
  })