Get startedGet started for free

Create process maps

Another way to visualize processes is by constructing a process map.

A process map is a directed graph that shows the activities of the process and the flows between them. The colors of the nodes and the thickness of the arrows indicate the most frequent activities and process flows.

This exercise is part of the course

Business Process Analytics in R

View Course

Exercise instructions

  • Load the processmapR package using library().
  • Visualize the patients data using process_map().
  • Follow the thick arrows on the process map to trace the two happy paths.

Hands-on interactive exercise

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

# Load processmapR


# Draw process map
Edit and Run Code