LoslegenKostenlos loslegen

The path well traveled

At the end of the last chapter, we had a look at the recruitment process of a large company. In this chapter, we'll look at this process in more detail. Let's start by investigating the happy path of the process. Does this also include the frequent repetitions we observed in the previous chapter?

Diese Übung ist Teil des Kurses

Business Process Analytics in R

Kurs anzeigen

Anleitung zur Übung

  • Use filter_trace_frequency() to select the top 20% most common variants of the vacancies process. Store the result in happy_path.
  • Visualize the happy path using a process map. Show the absolute case frequency by setting frequency()'s value to "absolute_case".
  • It seems that the "Restart procedure" activity is absent in the happy path. The overall average throughput time was 215 days. What is the average throughput time for the happy path?

Interaktive Übung

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

# Select top 20% of cases according to trace frequency
happy_path <- vacancies %>% 
  ___(___)

# Draw a process map of absolute case frequency
happy_path %>% 
  ___(type = ___(value = ___))

# Compute throughput time (in days)
___ %>% 
  ___(units = "days")
Code bearbeiten und ausführen