BaşlayınÜcretsiz Başlayın

Creating the event log

The final hurdle before we can start the analysis is to create the event log object.

Bu egzersiz

Business Process Analytics in R

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • To create a case_id, paste() together the combination of quotation_id and sales_order_id.
  • Use eventlog() to map the variables onto event data components.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Create the eventlog object 
otc_event_log <- otc %>%
  mutate(case_id = paste(___  , sep = "-")) %>%
  eventlog(
    case_id = ___,
    activity_id = ___,
    activity_instance_id = ___,
    timestamp = "timestamp",
    resource_id = "resource",
    lifecycle_id = "lifecycle"
  )
Kodu Düzenle ve Çalıştır