-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathanalyze.Rmd
37 lines (30 loc) · 1.08 KB
/
analyze.Rmd
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
---
title: Analyze process data
output:
html_document:
toc: false
---
```{r echo = F, out.width="25%", fig.align = "right"}
knitr::include_graphics("images/icons/analyze.PNG")
```
```{r include = F}
library(bslib)
```
```{r echo = F}
layout_column_wrap(card(
card_header("Control-Flow",class = "card text-white bg-danger mb-3"),
card_image("images/icons/cf.PNG", href = "control_flow_analysis.html", container = card_body)
),
card(
card_header("Performance", class = "card text-white bg-danger mb-3"),
card_image("images/icons/perf.PNG", href = "performance_analysis.html", container = card_body)
),
card(
card_header("Organisational", class = "card text-white bg-danger mb-3"),
card_image("images/icons/org.PNG", href = "organisational_analysis.html", container = card_body)
),
card(
card_header("Multi-dimensional", class = "card text-white bg-danger mb-3"),
card_image("images/icons/multi.PNG", href = "multi_dimensional_analysis.html", container = card_body)),width = "187.5px")
```
<br/>