knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)
options(tibble.print_min = 5, tibble.print_max = 5)

processmapR

CRAN status GitHub version R-CMD-check codecov Lifecycle: stable

processmapR is a R package for creating process maps. Part of the bupaR eco-system for business process analysis.

Installation

You can install processmapR from CRAN with:

install.packages("processmapR")

Development Version

You can install the development version of processmapR from GitHub with:

# install.packages("devtools")
devtools::install_github("bupaverse/processmapR")

Example

The bupaR Documentation website contains more details on creating process maps using processmapR.

library(processmapR)
library(bupaR)

# Process map
patients %>%
  process_map()
patients %>%
  process_map() %>%
  DiagrammeRsvg::export_svg() %>%
  charToRaw() %>%
  rsvg::rsvg_png("man/figures/README-example1-1.png")

process map

# Dotted chart
patients %>%
  dotted_chart(x = "absolute", sort = "start")


bupaverse/processmapR documentation built on Sept. 5, 2024, 6:25 a.m.