Nothing
idle_time_trace <- function(log, units) {
cases <- case_list(log)
log %>%
idle_time_case(units = units) -> raw
# Store time units, because dplyr transformations remove the attributes.
time_units <- attr(raw, "units")
raw %>%
merge(cases) %>%
group_by(trace) %>%
grouped_summary_statistics("idle_time") -> output
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.