Questions tagged [process-mining]

18 questions
4
votes
0 answers

Plotly doesn't render the plot correctly

I am trying to make a plot created with the trace_explorer function from buraR package interactive using the ggplotly function but the resulting plot is not the expected. Here is the code : library(ggplot2) library(bupaR) patients <-…
Alanq
  • 121
  • 3
  • 10
2
votes
0 answers

Process mining data visualization in Python

How can I reproduce a visualization like this in Python with the given example dataset? Which module can I use? +---------+-----------------------+-----------------------+----------------------------------+ | Case_ID | Timestamp_from | …
Nicolaesse
  • 2,554
  • 12
  • 46
  • 71
2
votes
1 answer

How to plot bupar Precedence Matrix using Plotly in Python?

I'm trying to plot a bupar Precedence Matrix as below using Plotly. So far I tried to plot a scatter plot as below: import plotly.express as px fig = px.scatter(df, y="Antecedent", x="Consequent", …
Ailurophile
  • 2,552
  • 7
  • 21
  • 46
1
vote
0 answers

Conformance checking with pm4py

Currently experimenting with PM4PY to perform conformance checking on an eventlog. I'm facing difficulties retrieving the diagnostics as per the pm4py.algo.conformance.tokenreplay sub package. Beneath you can find my code, but in essence it is…
Dries H
  • 11
  • 2
1
vote
0 answers

SocketException Error on launching ProM Lite 1.3

After starting the proM application by running the ProMLite13.sh file I am getting the following error - Started package manager session Downloading: ApacheUtils-6.9.122 I/O Exception: java.net.SocketException: Connection reset An error has…
ayushi
  • 63
  • 1
  • 6
0
votes
0 answers

Google Colab or DataBricks Notebook using R does not display BupaR

I used to perform process mining using R into R Studio or using PowerBI from Custom Visual (R). Process Mining is performed using bupaR and processanimateR libraries. For some reason running the same code (only data access is differs) into Google…
0
votes
0 answers

How to add Power Automate Process Advisor generated Power BI pages to another report?

I created a process in the Power Automate Process Advisor and through it a Power BI report. This feature requires 2 different licenses: Power Automate Premium and Power BI Premium. Is it technically possible to copy the visuals or pages of this…
0
votes
0 answers

Visualizing the process map in Dash using PM4PY

I have a Dash app built in which I would like to visualize a simple process map (dfg) using the PM4PY library. Here's a sample code (data can be downloaded from here): # Import packages import dash as dash from dash import Dash, html,…
A.Trzcionkowska
  • 133
  • 1
  • 2
  • 10
0
votes
0 answers

Celonis OLAP table - Median Throughput Time of Case by Case Category with a filter on an edge table

I have the following table structure: activity -- incident -- user Activity - as name suggests, has activities in it (in this case, any updates of an incident over time) Incident - contains header data of a case User - contains info about user who…
jnko
  • 163
  • 1
  • 12
0
votes
1 answer

Save Petri net model and load it again in Python

Im using the pm4py packege in order to simulate a Petri net model using a log. I do this by chosing random traces from the log file and than use induactive_miner to create Petri net for those traces. My goal is to save the Petri net and load it…
0
votes
0 answers

Defferences between Fuzzy Miner in Prom and dfg plugin in Pm4py

I am interested in defferences between Fuzzy Miner in Prom and dfg plugin in Pm4py. I can't find necessary information about it. And more question: Can we use dfg model in Pm4py for Fuzzy Miner, adapted for pm4py? I can't find necessary information…
0
votes
0 answers

Extract event data from process execution from Bonitastudio

I am working on a project and constructed my Bonita solution and executed it over a hundred of time. I would like to carry the project to the process mining phase and for me to carry out process mining I must have 3 fundamentals information: ID of…
0
votes
1 answer

Vertical check to flag only specified row in PySpark

I need to do a check vertical on my dataset in PySpark to flag only row that match some condition. In detail: I only have to flag only row where there is an "PURCHASE + SELLER" preceded by a "SALE + CUSTOMER" (bold in the example…
Jresearcher
  • 297
  • 3
  • 13
0
votes
0 answers

Is there a way for a process simulation in AnyLogic to generate and export event logs?

I could not find a way to generate a process mining suitable XES-event log based on an AnyLogic simulation of a process. If anyone knows if this is possible and how to do it, I would much appreciate it (very new to AnyLogic so it might just be user…
0
votes
1 answer

Substitutes for PM4PY process mining library in Python

I am facing some issues when trying to create a directly follows graph using PM4PY library. For some reason the, if the datapoints are too far from each other, it ignores some of the outliers on contructing the graph. I am not able to find any…
ayushi
  • 63
  • 1
  • 6
1
2