Skip to content
This repository has been archived by the owner on Sep 1, 2021. It is now read-only.

csouchet/bpmn-visualization-R-poc

 
 

Repository files navigation

BPMN Visualization - R package - Poc


⚠️ ⚠️ ⚠️ This project has been replaced by bpmn-visualization-R. ⚠️ ⚠️ ⚠️

Overview

This project is an R interface to the bpmn-visualization library.
Using JavaScript in R is handled by htmlwidgets framework.

Usage

Installation

Install from GitHub:

devtools::install_github("csouchet/bpmn-visualization-R-poc")
library(bpmn)

Load the BPMN file

bpmn widget accepts a BPMN file (or an XML document):

bpmn_file <- system.file("examples/qr-code.bpmn", package = "bpmn")

Or

bpmn_file <- file.choose()

Or

bpmn_file <- "path_to_bpmn_file"

Initialize the R package and load the BPMN diagram

bpmn(bpmn_file)

Initialize the R package and load the BPMN diagram with overlays

bpmn(bpmn_file, overlays = list(overlay(bpmn_element_id_1, "42"), overlay(bpmn_element_id_2, "9")))

Development

Installation

devtools::install()

Licenses

This package: MIT License

About

BPMN diagrams in R

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.8%
  • R 0.2%