bpmnVisualization is an R package for visualizing process execution data on BPMN diagrams, using overlays, style customization and interactions.
It is made possible by htmlwidgets, which provides an easy-to-use framework for bringing together R and the bpmn-visualization TypeScript library.
To install a dedicated version (available versions can be found in the GitHub releases page), run:
devtools::install_github("process-analytics/bpmn-visualization-R@v0.2.2")Or install the development version:
devtools::install_github("process-analytics/bpmn-visualization-R")Then, make the library available to the current R project:
library(bpmnVisualization)You first need to retrieve the content of the BPMN diagram. Once you are done, you can pass it to the display function that will render it.
bpmnVisualization::display(bpmn_content)Read ?display for more details.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.