Learn R Programming

pm4py (version 1.2.7)

petrinet_check_wfnet: Check Workflow net property

Description

Checks if the Petri net is a Workflow net

Usage

petrinet_check_wfnet(pn, convert = TRUE)

Arguments

pn

Petri net

convert

TRUE to automatically convert Python objects to their R equivalent. If you pass FALSE you can do manual conversion using the r-py-conversion function.

Value

A single logical

Examples

Run this code
# NOT RUN {
if (pm4py_available()) {
  library(eventdataR)
  data(patients)

  # As Inductive Miner of PM4PY is not life-cycle aware, keep only `complete` events:
  patients_completes <- patients[patients$registration_type == "complete", ]

  net <- discovery_inductive(patients_completes)
  petrinet_check_wfnet(net$petrinet)

}
# }

Run the code above in your browser using DataLab