Get startedGet started for free

Everything has a cost

In the vacancies event log, some activities have a cost assigned to them, mostly referring to the time invested in these activities by the resources. In this exercise, we'll check whether throughput time is related to this cost.

This exercise is part of the course

Business Process Analytics in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Add total_cost
vacancies_cost <- vacancies %>% 
  group_by_case() %>% 
  mutate(total_cost = ___(___, ___ = TRUE))
Edit and Run Code