Nothing
resource_involvement_resource <- function(log) {
relative <- NULL
absolute <- NULL
log %>%
as.data.frame() %>%
distinct(!!resource_id_(log), !!case_id_(log)) %>%
group_by(!!resource_id_(log)) %>%
summarize(absolute = n_distinct(!!case_id_(log))) %>%
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.