-
Notifications
You must be signed in to change notification settings - Fork 5
/
lecture_lab09.qmd
400 lines (275 loc) · 13.4 KB
/
lecture_lab09.qmd
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
---
title: "Lecture Lab 9"
author: "Søren Helweg Dam"
format:
revealjs:
embed-resources: true
theme: moon
slide-number: c/t
width: 1600
height: 900
mainfont: avenir
logo: images/r4bds_logo_small.png
footer: "R for Bio Data Science"
---
```{r run_app}
#| eval: false
#| echo: false
# remotes::install_github("r4bds/ShinyDogma")
ShinyDogma::run_app(options = list("port" = 1995))
```
```{r setup}
#| include: false
knitr::opts_chunk$set(echo = FALSE)
shinyUrl <- "http://localhost:1995"
htsShinyUrl <- "https://services.healthtech.dtu.dk/shiny/sohdam/ShinyDogma/"
```
# Creating a Simple Shiny App
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Lab 9 Learning Objectives
_A student who has met the objectives of the session will be able to:_
- Prepare a simple shiny application
- Using relevant online resources to autonomously identify and obtain new and expand on existing knowledge of R
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Today's lab
- Shiny app examples
- The two main components of a web application
- The difference between `imperative` and `declarative` programming
- Using `golem` and modules for shiny app development
- How to create an R shiny app
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
##
```{r}
#| eval: TRUE
#| echo: FALSE
knitr::include_app("https://shiny.posit.co/r/gallery/", height = 800)
```
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
##
```{r}
#| eval: TRUE
#| echo: FALSE
knitr::include_app(shinyUrl, height = 800)
```
[Link to app](`r htsShinyUrl`)
::: notes
Quickly walk through the app, showing how it works. We will talk about the components later.
:::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## The two main components of a web application
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## The two main components of a web application
- User Interface (Front end)
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## The two main components of a web application
- User Interface (Front end)
- Server (Back end)
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## The simplest Shiny App
```{r}
#| eval: false
#| echo: true
library(shiny)
# User Interface (Front end)
ui <- fluidPage("Hello World!")
# Server (Back end)
server <- function(input, output, session){}
# Running the app
shinyApp(ui, server)
```
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## What is user interface?
- *"The user interface (UI) is the point at which human users interact with a computer, website or application.*"
- *"The goal of effective UI is to make the user's experience easy and intuitive, requiring minimum effort on the user's part to receive maximum desired outcome."*
<!-- </br></br></br></br></br></br> -->
</br></br></br></br></br></br></br></br></br>
[source](https://www.indeed.com/career-advice/career-development/user-interface)
<!-- & [source](https://www.productplan.com/glossary/user-experience/) -->
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## User Interface
- When you know the purpose of your app, the first place to start is to think about the app layout.
- For inspiration either use:
- The [Shiny Layout Guide](https://shiny.posit.co/r/articles/build/layout-guide/)
- Or the [Shiny Cheat Sheet](https://rstudio.github.io/cheatsheets/html/shiny.html)
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
##
```{r}
#| eval: TRUE
#| echo: FALSE
knitr::include_app(shinyUrl, height = 800)
```
[Link to app](`r htsShinyUrl`)
::: notes
Go over the layout of the app and the input/output fields.
Skip the Example tab.
:::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Shiny Inputs
```{r}
#| eval: TRUE
#| echo: FALSE
knitr::include_app("https://gallery.shinyapps.io/081-widgets-gallery/", height = 800)
```
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## UI take-aways
- Start with `layout`
- Define/create your `inputs`
- Use `online resource` for help and inspiration
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## UI take-aways
- Start with `layout`
- Define/create your `inputs`
- Use `online resource` for help and inspiration
</br>
- **Now on to some programming**
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
##
```{r}
#| eval: TRUE
#| echo: FALSE
knitr::include_app(shinyUrl, height = 800)
```
[Link to app](`r htsShinyUrl`)
::: notes
Explain the top part of the Example tab and how it works.
:::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Imperative vs declarative programming
- `Imperative`: Issued commands are executed immediately
- `Declarative`: You set a high-level goal or describe a set of constraints to be translated into actions later
- *"With imperative code you say 'Make me a sandwich'."*
- *"With declarative code you say 'Ensure there is a sandwich in the refrigerator whenever I look inside of it'"*
</br></br></br></br></br></br></br>
[source](https://mastering-shiny.org/basic-reactivity.html#imperative-vs-declarative-programming)
::: notes
Imperative: giving an authoritative command
Declarative: denoting high-level programming languages which can be used to solve problems without requiring the programmer to specify an exact procedure to be followed
:::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Shiny is `declarative`
- Shiny translates your `declared` goals and constraints only when necessary.
- *What are the benefits and issues with declarative programming?*
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Shiny is `declarative`
- Shiny translates your `declared` goals and constraints only when necessary.
- *What are the benefits and issues with declarative programming?*
- You can have many actions ready, but only some are used
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Shiny is `declarative`
- Shiny translates your `declared` goals and constraints only when necessary.
- *What are the benefits and issues with declarative programming?*
- You can have many actions ready, but only some are used
- You do not need to define when the action should take place
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Shiny is `declarative`
- Shiny translates your `declared` goals and constraints only when necessary.
- *What are the benefits and issues with declarative programming?*
- You can have many actions ready, but only some are used
- You do not need to define when the action should take place
- But... initiating an action is strongly dependent on the name of the declaration
- i.e., typos are hard to detect
</br></br></br></br></br></br></br></br></br>
<!-- </br> -->
- [source](https://mastering-shiny.org/basic-reactivity.html#imperative-vs-declarative-programming)
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Reactivity
```{r, fig.align="center", out.width="95%"}
knitr::include_graphics("images/L09_reactivity.png")
```
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
# Questions?
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Introducing `golem`
- A framework for building production-grade shiny applications.
- It relies on the idea that every shiny application should be built as an R package
- But what does that mean and why?
![](images/L09_golem.png){fig-align="center" height="300pt"}
</br>
[source](https://engineering-shiny.org/structuring-project.html)
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Why `golem`?
- It has metadata
- It handles dependencies
- It’s split into functions
- It has documentation
- It’s tested
- There is a native way to build and deploy it
</br></br></br></br></br></br>
[source](https://engineering-shiny.org/structuring-project.html)
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Shiny modules
- Breaks the application into bite size pieces
- Helps you have a mental model of the application
- But isn't it complicated?
- Let me show you..
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
##
```{r}
#| eval: TRUE
#| echo: FALSE
knitr::include_app(shinyUrl, height = 800)
```
[Link to app](`r htsShinyUrl`)
::: notes
Scroll down in the Example tab and showcase how to add a module to the app_ui and app_server.
:::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
# Questions?
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
# Break, then exercises!