从闪亮的app中的dygraph中提取dyRangeSelector值

时间:2016-10-04 18:07:25

标签: r shiny dygraphs

我一直在使用dygraphs库在一个闪亮的应用程序中放置一些非常漂亮的时间序列图。我特别喜欢将group参数dygraphdyRangeSelector结合使用来同步多个dygraph的缩放级别。

有没有办法让其他闪亮输出对用户操作范围选择器有反应?以这个示例应用程序为例,它显示了一个简单的dygraph,并在下表中对系列进行求和:

# app.R
library(shiny)
library(dygraphs)
library(dplyr)

indoConc <- Indometh[Indometh$Subject == 1, c("time", "conc")]

ui <- fluidPage(
  dygraphOutput("plot"),
  tableOutput("table")
)

server <- shinyServer(function(input, output) {

  output$plot <- renderDygraph({
    indoConc %>%
      dygraph %>%
      dyRangeSelector
  })

  output$table <- renderTable({
    indoConc %>%
      filter(time >= min(indoConc$time), time <= max(indoConc$time)) %>%
      summarise(total_conc = sum(conc))
  })
})

shinyApp(ui, server)

我希望该表仅对用户当前选择的时间间隔求和。这意味着更改filter行以使用除最小/最大点之外的其他内容(不会导致过滤)。

如何以适当的格式从范围选择器中提取这两个值,以便我可以在filter调用中使用它们,并在用户移动滑块时让表更新?

1 个答案:

答案 0 :(得分:3)

由于time中的dataframe变量是3位变量,我建议您将datetime对象转换为character,然后选择最后3位数字你需要的,并将它粗略化为numeric以供进一步使用,如下所示:

rm(list = ls())
library(shiny)
library(dygraphs)
library(dplyr)
library(stringr)

indoConc <- Indometh[Indometh$Subject == 1, c("time", "conc")]
takeLastnvalues <- -3
ui <- fluidPage(dygraphOutput("plot"),tableOutput("table"))

server <- shinyServer(function(input, output,session) {

  values <- reactiveValues()  
  observeEvent(input$plot_date_window,{
    value1 <- input$plot_date_window[[1]]
    value2 <- input$plot_date_window[[2]]
    value1 <- sub("Z", "", value1)
    value2 <- sub("Z", "", value2)
    value1 <- str_sub(value1,takeLastnvalues,-1)
    value2 <- str_sub(value2,takeLastnvalues,-1)
    values$v1 <- as.numeric(value1)
    values$v2 <- as.numeric(value2)
  })

  output$plot <- renderDygraph({
    indoConc %>%
      dygraph %>%
      dyRangeSelector
  })

  output$table <- renderTable({
    indoConc %>%
      filter(time >= min(values$v1), time <= max(values$v2)) %>%
      summarise(total_conc = sum(conc))
  })
})

shinyApp(ui, server)

enter image description here