Nothing
filter_idle_time_threshold <- function(log,
lower_threshold,
upper_threshold,
reverse,
units) {
lower_threshold <- ifelse(is.na(lower_threshold), -Inf, lower_threshold)
upper_threshold <- ifelse(is.na(upper_threshold), Inf, upper_threshold)
log %>%
idle_time(level = "case", units = units) %>%
filter(between(as.double(idle_time, units = units), lower_threshold, upper_threshold)) %>%
pull(1) -> case_selection
filter_case(log, case_selection, reverse)
}
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.