在“闪亮”中显示“反应性值”

时间:2019-03-24 12:28:16

标签: r shiny

基本思想是,一旦更改了值,便将其打印给最终用户。

提供的代码会生成一个闪亮的仪表板,并在几秒钟后将值0打印到屏幕上。为了在打印0之前打印所有中间值(4、3、2、1),我应该更改什么?而且,最好显示值而不是仅打印值?

library(shiny)
library(shinydashboard)
x = 5

ui <- dashboardPage(
  dashboardHeader(title = "test"),
  dashboardSidebar(),
  dashboardBody(textOutput(outputId = "out"))
)

server <- function(input, output){
  while(x > 0){
    x = x - 1
    Sys.sleep(1)
    output$out <- renderPrint(x)
  }
}

shinyApp(ui, server)

我希望输出为:

4
3
2
1
0

或包含上述内容的表,但实际输出仅为0。

1 个答案:

答案 0 :(得分:0)

也许这可以为您提供帮助。您必须在renderPrint之外定义一个变量。在我的示例中,变量是在计时器触发器上更改的,但可以是任何其他输入。代码不是完美的,初始循环会立即执行,从头开始您将看到5和4,但这应该是一个很好的开始。

library(shiny)
library(shinydashboard)
x = 5

ui <- dashboardPage(
  dashboardHeader(title = "test"),
  dashboardSidebar(),
  dashboardBody(
    textOutput(outputId = "out"),
    verbatimTextOutput(outputId = "outText"),
    tags$hr(),
    actionButton("go","Change value on click"),
    verbatimTextOutput(outputId = "out2")
    )
)

server <- function(input, output){

  # define reactive variable
  outVar <- reactiveValues(dataRow=x,
                           text=paste(x),
                           value = x)
  # define time dependent trigger
  autoInvalidate <- reactiveTimer(2000) 

  # render print
  output$out <- renderPrint(outVar$dataRow)
  # render text print
  output$outText <- renderText(outVar$text)
  # render print
  output$out2 <- renderText(outVar$value)


  # time dependent change of variable
  observeEvent(autoInvalidate(),{
    # check if > 0 
    if(outVar$dataRow[length(outVar$dataRow)] > 0){
      # add
      outVar$dataRow <- c(outVar$dataRow,outVar$dataRow[length(outVar$dataRow)]-1)
      outVar$text <- paste0(outVar$text,'\n',outVar$dataRow[length(outVar$dataRow)])
    }
  })

  # observer on click button
  observeEvent(input$go,{
    # check if > 0 
    if(outVar$value > 0){
      # lower by one
      outVar$value <- outVar$value - 1
    }
  })
}

shinyApp(ui, server)