LoslegenKostenlos loslegen

Putting the process together

We have added some additional activity instances to sales_history and nicely formated the activity labels. Furthermore, we have prepared the event data for the remainder of the order-to-cash process, from sales order to invoice.

The only thing we still need to do is to combine both datasets together.

Diese Übung ist Teil des Kurses

Business Process Analytics in R

Kurs anzeigen

Anleitung zur Übung

  • Two datasets are preloaded: sales_history and order_history. Have a look at the structure of each of them.
  • Both datasets contain a subset of the event log. Combine their rows in a single dataset and save to otc.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Look at order history
___

# Look at sales history
___

# Combine the two
otc <- ___
Code bearbeiten und ausführen