Get startedGet started for free

Zooming Out

We just saw that there are many unique traces. The reason for this is that there are several stages in the process where various activities occur in parallel. This will create a unique sequence for each different ordering. When three activities can occur in any order, there are six different possible orderings. When we have another set of three parallel activities later in the process, the combined number of different orderings will increase to six times six, etc.

Let's work around this by collapsing those activities into a single activity instance. We have already collapse the sub processes Create Quotation, Production and Accounting. The sub process Delivery still needs to be collapsed.

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.

# Collapse activities
otc_high_level <- ___(otc, ___ = c(
							        "Handover To Deliverer",
							        "Order Delivered",
							        "Present For Collection",
							        "Order Fetched"))
Edit and Run Code