bupaverse / processmapR

Visualize event logs using directed graphs, i.e. process maps.
https://bupaverse.github.io/processmapR/
Other
9 stars 6 forks source link

minus sign in process map #25

Open Sedat1982 opened 4 years ago

Sedat1982 commented 4 years ago

Hello, when i get the process map according to the mean of days, it shows minues sign in some activities. what is the meaning of the minus sign in activites,? Thank you.

image

gertjanssenswillen commented 4 years ago

The performance map can show to types of information on flows: idle_time and inter_start_time. (argument flow_time in performance()) function Idle_time is the time between end of activity and start of next activty (default) Inter_start_time is the time between start of two consecutive activities

Idle time can be negative, if the next activity starts before the current one is finished. This is one of the drawbacks of process maps for process discovery, as it is not able to display concurrent activities.

In your example:

Sth similar is true for the other activity.

Hope this is somewhat clear