Nothing
processing_time_log <- function(log, units, work_schedule) {
raw <- processing_time_case(log, units = units, work_schedule = work_schedule)
# Store time units, because dplyr transformations remove the attributes.
time_units <- attr(raw, "units")
raw %>%
pull(processing_time) %>%
summary_statistics -> output
attr(output, "raw") <- raw
attr(output, "units") <- time_units
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.