Description
Support for BPMN (Business Process Management Notation).
Description
Creating, rendering and writing BPMN diagrams <https://www.bpmn.org/>. Functionalities can be used to visualize and export BPMN diagrams created using the 'pm4py' and 'bupaRminer' packages. Part of the 'bupaR' ecosystem.
README.md
bpmnR
- [x] task 1: make sure package can be installed
- [ ] task 2: what inputs does create_bpmn() expect; rendering bpmn model with render_bpmn()
- [ ] task 3: van tekstuele beschrijvingen naar inputs voor create_bpmn()
Task 2
minimal_subset_attributes_list <-
list(
tasks = c("id", "name"),
sequenceFlows = c("id", "name", "sourceRef", "targetRef"),
gateways = c("id", "name", "gatewayType", "gatewayDirection"),
startEvent = c("id", "name"),
endEvent = c("id", "name")
)