-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvisualize.Rmd
58 lines (49 loc) · 2.03 KB
/
visualize.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
title: Visualize process data
output:
html_document:
toc: false
---
```{r echo = F, out.width="25%", fig.align = "right"}
knitr::include_graphics("images/icons/visualize.PNG")
```
```{r include = F}
library(bslib)
library(htmltools)
```
```{r echo = F}
layout_column_wrap(heights_equal = "row",
width = NULL,
layout_column_wrap(
width = NULL,
style = css(grid_template_columns = "2fr 1fr"),
card(
card_header("Process map",class = "card text-white bg-success mb-3"),
layout_column_wrap(width = 0.5,
card_image("images/icons/pm.PNG", href = "control_flow_analysis.html", container = card_body),
shiny::HTML('<div class="d-grid gap-2" style = "padding: 20px 20px 20px 20px;">
<a href = "frequency_maps.html" class="btn btn-lg btn-success" type="button">Frequency Maps</a>
<a href = "performance_maps.html"class="btn btn-lg btn-success" type="button">Performance Maps</a>
<a href = "advanced_maps.html"class="btn btn-lg btn-success" type="button">Advanced Maps</a>
<a href = "animate_maps.html"class="btn btn-lg btn-success" type="button">Animate Maps</a>
</div>'))
),
card(
card_header("Process Matrix", class = "card text-white bg-success mb-3"),
card_image("images/icons/matrix.PNG", href = "process_matrix.html", container = card_body)
)),
layout_column_wrap(
width = "250px",
card(
card_header("Dotted Chart", class = "card text-white bg-success mb-3"),
card_image("images/icons/dotted.PNG", href = "dotted_chart.html", container = card_body)
),
card(
card_header("Trace explorer", class = "card text-white bg-success mb-3"),
card_image("images/icons/traces.PNG", href = "trace_explorer.html", container = card_body)
),
card(
card_header("Performance spectrum", class = "card text-white bg-success mb-3"),
card_image("images/icons/psminer.PNG", href = "performance_spectrum.html", container = card_body))))
```
<br/>