https://github.com/bupaverse/bupaR
Core R package for business process analysis
https://github.com/bupaverse/bupaR
Last synced: 4 months ago
JSON representation
Core R package for business process analysis
- Host: GitHub
- URL: https://github.com/bupaverse/bupaR
- Owner: bupaverse
- License: other
- Created: 2019-07-29T10:34:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-07-09T13:39:45.000Z (5 months ago)
- Last Synced: 2025-07-09T14:32:12.127Z (5 months ago)
- Language: R
- Homepage: http://www.bupar.net
- Size: 5.54 MB
- Stars: 57
- Watchers: 9
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - bupaverse/bupaR - Core R package for business process analysis (R)
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
options(tibble.print_min = 5, tibble.print_max = 5)
```
[](https://CRAN.R-project.org/package=bupaR/)
[](https://github.com/bupaverse/bupaR)
[](https://github.com/bupaverse/bupaR/actions/)
[](https://app.codecov.io/gh/bupaverse/bupaR/)
[](https://lifecycle.r-lib.org/articles/stages.html#stable/)
**bupaR** is an open-source suite for the handling and analysis of business process data in [`R`](https://www.r-project.org/) developed by the Business Informatics research group at Hasselt University, Belgium. It builds upon the concept of an event log which is a logbook of events which have happened and were recorded within the execution of a business process.
[Read more](https://bupar.net/)
## Installation
You can install **bupaR** from [CRAN](https://cran.r-project.org/) with:
```{r cran-installation, eval = FALSE}
install.packages("bupaR")
```
### Development Version
You can install the development version of **bupaR** from [GitHub](https://github.com/) with:
```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("bupaverse/bupaR")
```
## Example
The [bupaR Documentation](https://bupaverse.github.io/docs/) website contains more details on getting started with _Business Process Analysis_ using **bupaR**.
```{r example}
library(bupaR)
library(eventdataR)
# Get a list of all cases in the patients event log:
patients %>%
cases()
```
