R闪亮的倒数计时器?

时间:2016-09-12 11:18:45

标签: r timer shiny

我想在我闪亮的App中显示当前时间。因此,我可以使用Sys.time()

function(input, output, session) {
  output$currentTime <- renderText({
    invalidateLater(1000, session)
    paste("The current time is", Sys.time())
  })
}

我想知道是否也可以根据当前时间对倒数计时器进行编码。即将举行的活动?

1 个答案:

答案 0 :(得分:6)

以下代码应该做(让我们假设事件仅提前4分钟):

EventTime <- Sys.time() + 4*60
output$eventTimeRemaining <- renderText({
    invalidateLater(1000, session)
    paste("The time remaining for the Event:", 
           round(difftime(EventTime, Sys.time(), units='secs')), 'secs')
  })

使用以下输出:

The time remaining for the Event: 226 secs