Zooming out
Another way to zoom out of the detailed process is by collapsing a set of sub processes. Let's aggregate the following activities:
- Sub process Interviews: First Interview, Second Interview, Third Interview
- Sub process Prepare Recruitment: Publish Position, File Applications, Check References
- Sub process Create Offer: Construct Contract Offer, Disapprove Contract Offer, Approve Contract Offer
This exercise is part of the course
Business Process Analytics in R
Exercise instructions
- Starting from the
united_vacancies
log, aggregate the activities mentioned above in the three sub processes. Store the result inaggregated_vacancies
. - What is the impact on the number of activities and activity instances?
- Draw a performance map of the resulting event log. What is different now?
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Aggregate sub processes
aggregated_vacancies <- ___(
___,
___ = c("First Interview","Second Interview","Third Interview"),
___ = c("Publish Position","File Applications","Check References"),
___ = c(___,___,___)
)
# Calculate number of activities and activity instances
___
___
# Create performance map
___ %>%
___(type = performance())