• Creating logs
    • Logs: eventlog vs activitylog
    • The right log for the job
      • Scenario 1
      • Scenario 2
      • Scenario 3
    • Typical problems
      • Missing activity instance id
      • Large Datasets and Validation
      • Inconsistent Resources


Creating logs

Transforming your raw data into an event log object is one of the most challenging tasks in process analysis. On this page, we cover all the possible situations and challenges that you can encounter.

We start with some important terminology:

  • Case: The subject of your process, e.g. a customer, an order, a patient.
  • Activity: A step in your process, e.g. receive order, sent payment, perform MRI SCAN, etc.
  • Activity instance: The execution of a specific step for a specific case.
  • Event: A registration connected to an activity instance, characterized by a single timestamp. E.g. the start of Perform MRI SCAN for Patient X.
  • Resource: A person or machine that is related to the execution of (part of) an activity instance. E.g. the radiologist in charge of our MRI SCAN.
  • Lifecycle status: An indication of the status of an activity instance connect to an event. Typical values are start, complete. Other possible values are schedule, suspend, resume, etc.
  • Trace: A sequence of activities. The activity instances that belong to a case will result to a specific trace when ordered by the time each instance occurred.

Logs: eventlog vs activitylog

bupaR supports two different kinds of log formats, both of which are an extension on R data.frame:

  • eventlog: Event logs are created from data.frame in which each row represents a single event. This means that it has a single timestamp.
  • activitylog: Activity logs are created from data.frame in which each row represents a single activity instances. This means it can has multiple timestamps, stored in different columns.

The data model below shows the difference between these two levels of observations, i.e. activity instances vs events.

The example below shows an excerpt of an event log containing 6 events. It can be seen that each event is linked to a single timestamp. As there can be more events within a single activity instance, each event also needs to be linked to a lifecycle status (here the registration_type). Furthermore, an activity instance identifier (handling_id) is needed to indicated which events belong to the same activity instances.

handling patient employee handling_id registration_type time
Registration 386 r1 386 start 2018-01-03 15:29:22
Registration 386 r1 386 complete 2018-01-03 18:40:09
Triage and Assessment 386 r2 886 start 2018-01-04 04:25:11
Triage and Assessment 386 r2 886 complete 2018-01-04 20:15:59
Blood test 386 r3 1183 start 2018-01-05 08:34:48
Blood test 386 r3 1183 complete 2018-01-05 15:21:21
Transactional lifecycle?
An event is an atomic registration related to an activity instance. It thus contains one (and only one) timestamp. Additionally, the event should include a reference to a lifecycle transition. More specifically, multiple events can describe different lifecycle transitions of a single activity instance. For example, one event might record when a surgery is scheduled, another when it is started, yet another when it is completed, etc.
The standard transactional lifecycle.
Expand

The table below show the same data as above, but now using the activitylog format. It can be seen that there are now just 3 rows instead of 6, but each row as 2 timestamps, representing 2 events. The lifecycle status represented by those timestamps is now the column names of those variables.

handling patient employee handling_id complete start
Registration 386 r1 386 2018-01-03 18:40:09 2018-01-03 15:29:22
Triage and Assessment 386 r2 886 2018-01-04 20:15:59 2018-01-04 04:25:11
Blood test 386 r3 1183 2018-01-05 15:21:21 2018-01-05 08:34:48

As these examples show, both formats can often be used for representing the same process data. However, there are some important differences between them:

  • the eventlog format has much more flexibility in terms of lifecycle. There is no limit to the number of events that can occur in a single activity instance. If your data contains lifecycle statuses such as suspend, resume or reassign, they can be recorded multiple times within a single activity instance. In the activitylog format, as each lifecycle gets is own column, it isn’t possible to have two events of the same lifecycle status in a single activity instance.
  • the level of observation in an eventlog is an event. As a result, attribute values can be stored at the event level. In an activitylog, the level of observation is an activity instance. This means that all additional attributes that you have about your process should be at this higher level. For example, an activity instance can only be connected to a single resource in the activitylog format, whereas in an eventlog different events within the same activity instance can have different resources, of different values for any other attribute.
  • because of the limited flexibility, an activitylog is easier to make, and typically closer to the format that your data is already in (see further below on how to construct log objects). As a result of this, there are many situations in which the analysis of an activitylog will be much faster compared to eventlog, where a lot of additional complexity needs to be taken into account.

The right log for the job

Functionalities in bupaR core packages support both formats. 1 As such, the goal of your analysis does not impact the decision. Only the complexity of your data is important to make this decision. The precise format your raw data is in will further define the preparatory steps that are needed. We can distinguish between 3 typical scenarios. The flowchart below helps you on your way.

An activitylog is the best option when each row in your data is an activity instance, or when events belonging to the same activity instance have equal attribute values (e.g. all events are executed by the same resource). When these two criteria do not hold, you can create an eventlog object.

Scenario 1

If each row in your data.frame is already an activity instance, the activitylog format is the best way to go. Consider the data sample below.

patient handling activity_started activity_ended
101 Check-out 2017-04-23 00:16:15 2017-04-23 02:55:23
101 Discuss Results 2017-04-22 08:15:23 2017-04-22 11:14:53
101 Registration 2017-04-16 06:38:58 2017-04-16 09:12:01
101 Triage and Assessment 2017-04-16 22:46:00 2017-04-17 10:17:27
101 X-Ray 2017-04-18 01:05:58 2017-04-18 05:22:16

As each row contains multiple timestamps, i.e. activity_started and activity_ended, it is clear that each row represents an activity instance. Turning this dataset in an activitylog requires the following steps:

  1. Timestamp variables should be named in correspondence with the standard Transactional lifecycle.
  2. Timestamp variables should be of type Date or POSIXct.
  3. Use the activitylog constructor function.
data %>%
    # rename timestamp variables appropriately
    dplyr::rename(start = activity_started, 
           complete = activity_ended) %>%
    # convert timestamps to 
    convert_timestamps(columns = c("start", "complete"), format = ymd_hms) %>%
    activitylog(case_id = "patient",
                activity_id = "handling",
                timestamps = c("start", "complete"))
## # Log of 10 events consisting of:
## 1 trace 
## 1 case 
## 5 instances of 5 activities 
## 0 resources 
## Events occurred from 2017-04-16 06:38:58 until 2017-04-23 02:55:23 
##  
## # Variables were mapped as follows:
## Case identifier:     patient 
## Activity identifier:     handling 
## Resource identifier:     employee 
## Timestamps:      start, complete 
## 
## # A tibble: 5 × 5
##   patient handling              start               complete            .order
##   <chr>   <fct>                 <dttm>              <dttm>               <int>
## 1 101     Check-out             2017-04-23 00:16:15 2017-04-23 02:55:23      1
## 2 101     Discuss Results       2017-04-22 08:15:23 2017-04-22 11:14:53      2
## 3 101     Registration          2017-04-16 06:38:58 2017-04-16 09:12:01      3
## 4 101     Triage and Assessment 2017-04-16 22:46:00 2017-04-17 10:17:27      4
## 5 101     X-Ray                 2017-04-18 01:05:58 2017-04-18 05:22:16      5

Note that in case a resource identifier is available, this information can be added in the activitylog call.

Scenario 2

If each row in your data.frame is an event, but all events that belong to the same activity instance share the same attribute values, the activitylog format is again the best way to go. Consider the data sample below.

patient handling employee handling_id registration_type time
266 Registration r1 266 started 2017-09-18 16:02:05
266 Registration r1 266 completed 2017-09-18 17:23:50
266 Triage and Assessment r2 766 started 2017-09-18 23:05:02
266 Triage and Assessment r2 766 completed 2017-09-19 17:03:51
266 X-Ray r5 1617 started 2017-09-20 08:08:58
266 X-Ray r5 1617 completed 2017-09-20 15:00:02
266 Discuss Results r6 2000 started 2017-09-20 20:58:10
266 Discuss Results r6 2000 completed 2017-09-21 00:02:52
266 Check-out r7 2495 started 2017-09-21 01:57:59
266 Check-out r7 2495 completed 2017-09-21 03:14:04

The resource identifier (employee) has been added as an additional attribute. Note that though each row is an event, they can be grouped into activity instances using the handling_id column, which we will call the activity instance id. Using the latter, we can see that the resource attribute is the same within each activity instance, which allows us to create an activitylog. The steps to do so are the following.

  1. Lifecycle variable should be named in correspondence with the standard Transactional lifecycle.
  2. Timestamp variable should be of type Date or POSIXct.
  3. Use the eventlog constructor function.
  4. Convert to activitylog using to_activitylog for reduced memory usage and improved performance.
data %>%
    # recode lifecycle variable appropriately
    dplyr::mutate(registration_type = forcats::fct_recode(registration_type, 
                                                          "start" = "started",
                                                          "complete" = "completed")) %>%
    convert_timestamps(columns = "time", format = ymd_hms) %>%
    eventlog(case_id = "patient",
                activity_id = "handling",
                activity_instance_id = "handling_id",
                lifecycle_id = "registration_type",
                timestamp = "time",
                resource_id = "employee") %>%
    to_activitylog() -> tmp_act

Note that the resource identifier is optional, and can be left out of the eventlog call if such an attribute does not exist in your data. If the activity instance id does not exist, some heuristics are available to generate it: Missing activity instance id.

Scenario 3

If each row is an event, and events of the same activity instance have differing attribute values, the flexibility of eventlog objects is required. Consider the data sample below.

patient handling employee handling_id registration_type time
125 Registration r3 125 started 2017-05-04 21:29:42
125 Registration r7 125 completed 2017-05-05 01:39:05
125 Triage and Assessment r4 625 started 2017-05-05 11:26:14
125 Triage and Assessment r6 625 completed 2017-05-06 01:21:46
125 Blood test r1 1060 started 2017-05-06 14:12:11
125 Blood test r2 1060 completed 2017-05-06 20:31:06
125 MRI SCAN r6 1297 started 2017-05-07 01:01:04
125 MRI SCAN r3 1297 completed 2017-05-07 04:46:58
125 Discuss Results r2 1859 started 2017-05-07 10:49:10
125 Discuss Results r1 1859 completed 2017-05-07 12:12:08
125 Check-out r4 2354 started 2017-05-12 20:04:13
125 Check-out r7 2354 completed 2017-05-12 21:59:17

In this example, different resources (employees) sometimes perform the start and complete event of the same activity instance. Therefore, we resort to the eventlog format which has no problems storing this. The steps to take are the following:

  1. Lifecycle variable should be named in correspondence with the standard Transactional lifecycle.
  2. Timestamp variable should be of type Date or POSIXct.
  3. Use the eventlog constructor function.
data %>%
    # recode lifecycle variable appropriately
    dplyr::mutate(registration_type = forcats::fct_recode(registration_type, 
                                                          "start" = "started",
                                                          "complete" = "completed")) %>%
    convert_timestamps(columns = "time", format = ymd_hms) %>%
    eventlog(case_id = "patient",
                activity_id = "handling",
                activity_instance_id = "handling_id",
                lifecycle_id = "registration_type",
                timestamp = "time",
                resource_id = "employee") 
## Warning in validate_eventlog(eventlog): The following activity instances are
## connected to more than one resource: 1060,125,1297,1859,2354,625
## # Log of 12 events consisting of:
## 1 trace 
## 1 case 
## 6 instances of 6 activities 
## 6 resources 
## Events occurred from 2017-05-04 21:29:42 until 2017-05-12 21:59:17 
##  
## # Variables were mapped as follows:
## Case identifier:     patient 
## Activity identifier:     handling 
## Resource identifier:     employee 
## Activity instance identifier:    handling_id 
## Timestamp:           time 
## Lifecycle transition:        registration_type 
## 
## # A tibble: 12 × 7
##    patient handling   employee handling_id registration_type time               
##    <chr>   <fct>      <fct>    <chr>       <fct>             <dttm>             
##  1 125     Registrat… r3       125         start             2017-05-04 21:29:42
##  2 125     Registrat… r7       125         complete          2017-05-05 01:39:05
##  3 125     Triage an… r4       625         start             2017-05-05 11:26:14
##  4 125     Triage an… r6       625         complete          2017-05-06 01:21:46
##  5 125     Blood test r1       1060        start             2017-05-06 14:12:11
##  6 125     Blood test r2       1060        complete          2017-05-06 20:31:06
##  7 125     MRI SCAN   r6       1297        start             2017-05-07 01:01:04
##  8 125     MRI SCAN   r3       1297        complete          2017-05-07 04:46:58
##  9 125     Discuss R… r2       1859        start             2017-05-07 10:49:10
## 10 125     Discuss R… r1       1859        complete          2017-05-07 12:12:08
## 11 125     Check-out  r4       2354        start             2017-05-12 20:04:13
## 12 125     Check-out  r7       2354        complete          2017-05-12 21:59:17
## # ℹ 1 more variable: .order <int>

Note that we need an eventlog irrespective of which attribute values are differing, i.e. it can be resources, but also any additional variables you have in your data set. For the special case of resource values, it might be that a different resource executing events in the same activity instance is a data quality issue. If so, some functions can help you to identify this issue: Inconsistent Resources.

Again, if the activity instance id does not exist, some heuristics are available to generate it: Missing activity instance id.

Typical problems

Missing activity instance id

In order to be able to correlate events which belong to the same activity instance, an activity instance identifier is required. For example, in the data shown below, it is possible that a patient has gone through different surgeries, each with their own start- and complete event. The activity instance identifier will then allow to distinguish which events belong together and which do not. It is important to note that this instance identifier should be unique, also among different cases and activities.

patient activity timestamp status activity_instance
John Doe check-in 2017-05-10 08:33:26 complete 1
John Doe surgery 2017-05-10 08:53:16 start 2
John Doe surgery 2017-05-10 09:25:19 complete 2
John Doe treatment 2017-05-10 10:01:25 start 3
John Doe treatment 2017-05-10 10:35:18 complete 3
John Doe surgery 2017-05-10 10:41:35 start 4
John Doe surgery 2017-05-10 11:05:56 complete 4
John Doe check-out 2017-05-11 14:52:36 complete 5

If the activity instance identifier is not available you can use the assign_instance_id() function, which uses an heuristic to create the missing identifier. Alternatively, you can try to create the identifier on your own using dplyr::mutate() and other manipulation functions.

Large Datasets and Validation

By default, bupaR validates certain properties of the activity instances that is supplied when creating an event log:

  • a single activity instance identifier must not be connected to multiple cases,
  • a single activity instance identifier must not be connected to multiple activity labels,

However, these checks are not efficient and may lead to considerable performance issues for large data frames. It is possible to deactivate the validation in case you already know that your data fulfills all the requirements, using the argument validate = FALSE when creating the eventlog. Note that when the activity instance id was created with the assign_instance_id() function, you can assume the above properties hold.

Inconsistent Resources

Each event can contain the notion of a resource. It can be so that different events belonging to the same activity instance are executed by different resources, as in the eventlog below.

patient handling employee handling_id registration_type time .order
410 Registration r7 410 start 2018-01-29 16:12:29 1
410 Registration r3 410 complete 2018-01-29 19:08:09 2
410 Triage and Assessment r6 910 start 2018-01-30 08:25:56 3
410 Triage and Assessment r6 910 complete 2018-01-30 20:29:52 4
410 Blood test r1 1194 start 2018-02-01 22:35:31 5
410 Blood test r4 1194 complete 2018-02-02 04:07:25 6
410 MRI SCAN r2 1431 start 2018-02-02 07:57:40 7
410 MRI SCAN r1 1431 complete 2018-02-02 12:33:44 8
410 Discuss Results r7 2144 start 2018-02-02 17:54:31 9
410 Discuss Results r4 2144 complete 2018-02-02 19:22:58 10
410 Check-out r3 2639 start 2018-02-08 03:42:16 11
410 Check-out r2 2639 complete 2018-02-08 06:01:20 12

If you have a large dataset, and want to have an overview of the activity instances that have more than one resource connected to them, you can use the detect_resource_inconsistences() function.

log %>%
    detect_resource_inconsistencies()
## # A tibble: 5 × 5
##   patient handling        handling_id complete start
##   <chr>   <fct>           <chr>       <chr>    <chr>
## 1 410     Blood test      1194        r4       r1   
## 2 410     Check-out       2639        r2       r3   
## 3 410     Discuss Results 2144        r4       r7   
## 4 410     MRI SCAN        1431        r1       r2   
## 5 410     Registration    410         r3       r7

If you want to remove these inconsistencies, a quick fix is to merge the resource labels together with fix_resource_inconsistencies(). Note that this is not needed for eventlog, but it is for activitylog. While the creation of the eventlog will emit a warning when resource inconsistencies exist, this should mostly be seen as a data quality warning. That said, there might be analysis related to the counting of resources where such inconsistencies might lead to odd results.

log %>%
    fix_resource_inconsistencies()
## *** OUTPUT ***
## A total of 5 activity executions in the event log are classified as inconsistencies.
## They are spread over the following cases and activities:
## # A tibble: 5 × 5
##   patient handling        handling_id complete start
##   <chr>   <fct>           <chr>       <chr>    <chr>
## 1 410     Blood test      1194        r4       r1   
## 2 410     Check-out       2639        r2       r3   
## 3 410     Discuss Results 2144        r4       r7   
## 4 410     MRI SCAN        1431        r1       r2   
## 5 410     Registration    410         r3       r7
## Inconsistencies solved succesfully.
## # Log of 12 events consisting of:
## 1 trace 
## 1 case 
## 6 instances of 6 activities 
## 6 resources 
## Events occurred from 2018-01-29 16:12:29 until 2018-02-08 06:01:20 
##  
## # Variables were mapped as follows:
## Case identifier:     patient 
## Activity identifier:     handling 
## Resource identifier:     employee 
## Activity instance identifier:    handling_id 
## Timestamp:           time 
## Lifecycle transition:        registration_type 
## 
## # A tibble: 12 × 7
##    patient handling   employee handling_id registration_type time               
##    <chr>   <fct>      <chr>    <chr>       <fct>             <dttm>             
##  1 410     Registrat… r3 - r7  410         start             2018-01-29 16:12:29
##  2 410     Registrat… r3 - r7  410         complete          2018-01-29 19:08:09
##  3 410     Triage an… r6       910         start             2018-01-30 08:25:56
##  4 410     Triage an… r6       910         complete          2018-01-30 20:29:52
##  5 410     Blood test r4 - r1  1194        start             2018-02-01 22:35:31
##  6 410     Blood test r4 - r1  1194        complete          2018-02-02 04:07:25
##  7 410     MRI SCAN   r1 - r2  1431        start             2018-02-02 07:57:40
##  8 410     MRI SCAN   r1 - r2  1431        complete          2018-02-02 12:33:44
##  9 410     Discuss R… r4 - r7  2144        start             2018-02-02 17:54:31
## 10 410     Discuss R… r4 - r7  2144        complete          2018-02-02 19:22:58
## 11 410     Check-out  r2 - r3  2639        start             2018-02-08 03:42:16
## 12 410     Check-out  r2 - r3  2639        complete          2018-02-08 06:01:20
## # ℹ 1 more variable: .order <int>

Read more:


  1. Currently both eventlog and activitylog are supported by the packages bupaR, edeaR and processmapR. The daqapo package only supports activitylog, while all other packages only support eventlog. While the goal is to extend support for both to all packages, you can in the meanwhile always convert the format of your log using the functions to_eventlog() and to_activitylog().↩︎


Copyright © 2023 bupaR - Hasselt University