Nothing
timer <- function(units = "secs") {
.time <- Sys.time()
.units <- units
list(
now = function() {
Sys.time()
},
elapsed = function() {
difftime(Sys.time(), .time, units = .units)
},
tick = function() {
result <- difftime(Sys.time(), .time, units = .units)
.time <<- Sys.time()
invisible(result)
}
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.