LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Business Process Analytics in R

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Add total_cost
vacancies_cost <- vacancies %>% 
  group_by_case() %>% 
  mutate(total_cost = ___(___, ___ = TRUE))
Code bearbeiten und ausführen