Nothing
filter_trace_frequency_threshold <- function(eventlog,
lower_threshold,
upper_threshold,
reverse){
if(is.null(lower_threshold) & is.null(upper_threshold)){
stop("Upper threshold or lower threshold must be defined")
}
if(is.na(lower_threshold))
lower_threshold <- -Inf
if(is.na(upper_threshold))
upper_threshold <- Inf
absolute <- NULL
eventlog %>%
trace_coverage("case") %>%
filter(absolute >= lower_threshold,
absolute <= upper_threshold) %>%
pull(1) -> case_selection
filter_case(eventlog, 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.