From 737b43a362d82256b4f78fa53af4691644f7bf1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciar=C3=A1n=20D=2E=20McInerney?= <44294573+ciaranmci@users.noreply.github.com> Date: Tue, 30 Jan 2024 13:44:38 +0000 Subject: [PATCH] "discover_inductive" instead of "discovery_inductive" In version 2.0.0 of `pm4py`, the function to use th einductive miner is `discover_inductive()` (without the "-y") rather than `discovery_inductive`, which is what it says in the README.md. I note that the function for the alpha miner is `discovery_alpha`, with a "-y". Should this be without the "-y"? --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a74eb71..dcba699 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ library(bupaR) patients_completes <- patients[patients$registration_type == "complete", ] # Discovery with Inductive Miner -pn <- discovery_inductive(patients_completes) +pn <- discover_inductive(patients_completes) # This results in an auto-converted bupaR Petri net and markings str(pn)