Nothing
create_minimal_activity_log <- function(eventlog) {
eDT <- data.table::data.table(eventlog)
data.table::setorderv(eDT, cols = c(case_id(eventlog), timestamp(eventlog), ".order"))
dplyr::as_tibble(unique(eDT, by = c(case_id(eventlog), activity_instance_id(eventlog), activity_id(eventlog))))
}
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.