Nothing
resource_involvement_resource_activity <- function(log) {
absolute <- NULL
relative <- NULL
log %>%
distinct(!!resource_id_(log), !!activity_id_(log), !!case_id_(log)) %>%
group_by(!!resource_id_(log), !!activity_id_(log)) %>%
summarize("absolute" = n_distinct(!!case_id_(log))) %>%
ungroup() %>%
mutate(relative = absolute/n_cases(log))
}
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.