-
Notifications
You must be signed in to change notification settings - Fork 2
/
randomisation_shiny.Rmd
131 lines (112 loc) · 1.83 KB
/
randomisation_shiny.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
---
title: "randomisation"
author: "Brad Duthie"
date: "21/09/2020"
output: ioslides_presentation
runtime: shiny
---
<style type="text/css">
body p {
color: #000000;
}
ul {
color: black;
}
ol {
color: black;
}
a {
color: darkblue;
text-decoration: none
}
.fifty {
font-size: 50%;
}
.seventy {
font-size: 70%;
}
slides > slide.backdrop {
background: none !important;
background-color: white !important;
}
slides > slide.title-slide hgroup h1 {
color: black;
}
slides > slide.title-slide p {
color: black;
}
slides > slide.light > hgroup h2 {
color: black;
}
slides > slide.light > hgroup h1 {
color: black;
}
ul {
color: black;
}
ol {
color: black;
}
p {
color: black
}
h1, h2, h3, h4, h5, h6, h7, h8, p {
color: black;
}
.column-left{
float: left;
width: 67%;
text-align: left;
}
.column-right{
float: right;
width: 33%;
text-align: right;
}
</style>
<!----
<style type="text/css">
body p {
color: #000000;
}
</style>
--->
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
## {.columns-2}
{.column}
```{r, echo=FALSE}
inputPanel(
actionButton("go", "Randomise the data"),
actionButton("stop", "Reset")
)
```
```{r, echo = FALSE, fig.height = 5}
renderPlot({
hist(rnorm(100));
})
```
<br>
```{r, echo=FALSE}
renderTable({
matrix(data = rnorm(20), ncol = 2);
})
```
##
This is regular text spanning the whole page. But here comes a two-column section.
:::::: {.columns}
::: {.column width="48%" data-latex="{0.48\textwidth}"}
This text is in the left column.
:::
::: {.column width="4%" data-latex="{0.04\textwidth}"}
\
<!-- an empty Div (with a white space), serving as
a column separator -->
:::
:::::: {.column width="48%" data-latex="{0.48\textwidth}"}
This text is in the right column.
:::
::::::
\newline
And back to a regular single-column environment.