https://github.com/bupaverse/bupaR
Core R package for business process analysis
https://github.com/bupaverse/bupaR
Last synced: 5 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 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-27T15:57:51.000Z (about 1 year ago)
- Last Synced: 2024-11-24T16:03:37.883Z (5 months ago)
- Language: R
- Homepage: http://www.bupar.net
- Size: 5.04 MB
- Stars: 55
- Watchers: 10
- Forks: 6
- 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")
```## Cheat Sheet
## Example
The [bupaR Documentation](https://bupar.net/getting_started.html) 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()
```