Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bupaverse/bupaR
Core R package for business process analysis
https://github.com/bupaverse/bupaR
Last synced: 8 days 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 (9 months ago)
- Last Synced: 2024-11-24T16:03:37.883Z (18 days 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)
```[![CRAN status](https://www.r-pkg.org/badges/version/bupaR)](https://CRAN.R-project.org/package=bupaR/)
[![GitHub version](https://img.shields.io/badge/GitHub-0.5.2-blue)](https://github.com/bupaverse/bupaR)
[![R-CMD-check](https://github.com/bupaverse/bupaR/workflows/R-CMD-check/badge.svg/)](https://github.com/bupaverse/bupaR/actions/)
[![codecov](https://codecov.io/gh/bupaverse/bupaR/branch/dev/graph/badge.svg?token=40OgWBneWv/)](https://app.codecov.io/gh/bupaverse/bupaR/)
[![Lifecycle: stable](https://lifecycle.r-lib.org/articles/figures/lifecycle-stable.svg)](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()
```