R Shiny server.R反应时间/日期滑块,带有变化的轴

时间:2016-06-23 18:17:35

标签: r shiny reactive-programming shiny-server

我有一个包含5个参数和一个日期/时间列的数据框。我希望能够使用下拉菜单绘制参数(即列),并使用滑块移动日期/时间。我遇到了严重的服务器问题.R。日期/时间滑块表示下拉参数更改时的数据。示例数据下面,server.R缺少关键元素

      LAT=rnorm(10)
      LONG=rnorm(10)
      DO=rnorm(10)
      SP=rnorm(10)
      TMP=rnorm(10)
DateTime=as.POSIXct(c("2016-04-18 10:30:00 ", 
"2016-04-18 10:30:00 ", "2016-04-18 10:31:00 ",
 "2016-04-18 10:31:00 ", "2016-04-18 10:32:00 ",
 "2016-04-18 10:32:00 ",
"2016-04-18 10:33:00 ", "2016-04-18 10:33:00 ", 
"2016-04-18 10:34:00 ", "2016-04-18 10:34:00"))

DATA=data.frame(cbind(LAT,LONG,DO,SP,TMP,DateTime))
DATA$DateTime=as.POSIXct(DateTime)



ui=(pageWithSidebar(
      headerPanel('DATA Comparison'),
      sidebarPanel(
        selectInput('xcol', 'X Variable', names(DATA)),
        selectInput('ycol', 'Y Variable', names(DATA),
                    selected=names(DATA)[[3]]),
       sliderInput('dtime', 'Date Time',min(DATA$DateTime),max(DATA$DateTime),
        min(DATA$DateTime),step=60, timeFormat= "%F %T")
                ),
      mainPanel(
        plotOutput('plot1')
      )
    ))

server=(function(input, output, session) {
  selectedData = reactive({
   DATA[ , c(input$xcol, input$ycol)]
  })

1 个答案:

答案 0 :(得分:1)

参见下面的示例

server=(function(input, output, session) {

    output$plot1 <- renderPlot({
        selected <- DATA[DATA$DateTime==input$dtime, ]
        plot(selected[[input$xcol]], selected[[input$ycol]])
    })

})