Nothing
idle_time_log <- function(log, units) {
idle_times <- idle_time_case(log, units)
# Store time units, because dplyr transformations remove the attributes.
time_units <- attr(idle_times, "units")
idle_times %>%
pull(idle_time) %>%
summary_statistics() -> output
attr(output, "raw") <- idle_times
attr(output, "units") <- time_units
return(output)
}
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.