forked from bupaverse/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocessmonitR.rmd
More file actions
56 lines (36 loc) · 1.26 KB
/
Copy pathprocessmonitR.rmd
File metadata and controls
56 lines (36 loc) · 1.26 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
---
title: processmonitR
output:
html_document:
toc: true
toc_float:
collapsed: false
print: false
---
## Introduction
```{r echo = F}
htmltools::includeHTML("tracking_google_analytics.html")
```
The processmonitR package provides several predefined dashboard to monitor process based on event logs. They can be launched using the following functions:
* `performance_dashboard`: to look at throughput time, processing time, idle time
* `activity_dashboard`: to look at activity frequency and presence
* `rework_dashboard`: to look at rework (selfloops, repetitions)
* `resource_dashboard`: to look at resource frequency, involvement, specialization
## Examples
Below, you can find examples of the dashboard for the patients event log.
### Performance
```{r echo = F, fig.align = "center", out.width=900}
knitr::include_graphics("images/performance_dashboard.PNG")
```
### Activity
```{r echo = F, fig.align = "center", out.width=900}
knitr::include_graphics("images/activity_dashboard.PNG")
```
### Rework
```{r echo = F, fig.align = "center", out.width=900}
knitr::include_graphics("images/rework_dashboard.PNG")
```
### Resources
```{r echo = F, fig.align = "center", out.width=900}
knitr::include_graphics("images/resource_dashboard.PNG")
```