forked from bupaverse/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventdataR.rmd
More file actions
65 lines (38 loc) · 1.04 KB
/
Copy patheventdataR.rmd
File metadata and controls
65 lines (38 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
title: eventdataR
output:
html_document:
toc: true
toc_float:
collapsed: false
print: false
---
```{r echo = F}
htmltools::includeHTML("tracking_google_analytics.html")
library(bupaR)
```
The `eventdataR` package contains several real-life and artificial event logs. Each can be loaded using the `data` function. The currently available event logs are listed below. More event logs will be added in the future.
## Artifical data
### Patients
Artificial eventlog about patients arriving in an emergency department of a hospital. This event log was used as the running example in the journal paper entitled [Retrieving batch organisation of work insights from event logs](http://www.sciencedirect.com/science/article/pii/S0167923617300374).
```{r message = F, warning = F}
library(eventdataR)
patients %>% summary
```
## Real-life data
### Sepsis
```{r}
sepsis
```
### Hospital Log
```{r}
hospital
```
### Hospital Billing
```{r}
hospital_billing
```
### Road Traffic Fine Management
```{r}
traffic_fines
```