-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicated sequence from activity to Exclusive Gateway in BPMN visualization #475
Comments
Dear @jacaballero It's not technically wrong, but we'll have a look to avoid these double arcs in the conversion |
That's great. Thank you for your quick response. |
By the way, could you attach a small example log where this happens? Cheers |
The log that I'm using has 240000 lines in XES format. I'll try to test if with a sample of the traces it happens as well. |
I attached a CSV sample of where this happens. I loaded it as below: log = pm4py.format_dataframe(pandas.read_csv('filtered_file.csv', sep=';'), case_id='case_id',activity_key='concept:name', timestamp_key='time:timestamp') And then applied the function that I included in a previous comment. Hope this helps to debug it. Regards |
Thanks, we identified and resolved the issue :-) |
I checked the last version and now it works. Thank you!! |
Hi all,
I don't know if this is a problem with the library or if it is accepted in BPMN models, but I have been working for a long time with other frameworks such as ProM, and it's the first time that I found it.
I'm importing a CSV log to show its BPMN model. When I apply a significant noise_threshold (i.e. 0.20), a duplicated sequence with two exclusive gateways is shown as appears in the image below:
The function where I create and save the BPMN is very simple, it is included below:
When I get the BPMN model without filtering infrequent paths (or with scarce filters as 0.01), this doesn't happen.
Could you help me with this, please?
Thanks
The text was updated successfully, but these errors were encountered: