-
Notifications
You must be signed in to change notification settings - Fork 2
/
slide_shiny2.Rmd
403 lines (296 loc) · 7.4 KB
/
slide_shiny2.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
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
401
402
403
---
title: "R Shiny - Part II"
subtitle: "Workshop on Data Visualization in R"
author: "`r paste0('<b>Lokesh Mano</b> • ',format(Sys.time(), '%d-%b-%Y'))`"
institute: NBIS, SciLifeLab
keywords: bioinformatics, course, workshop, scilifelab, nbis
output:
xaringan::moon_reader:
encoding: 'UTF-8'
self_contained: false
chakra: 'assets/remark-latest.min.js'
css: 'assets/slide.css'
lib_dir: libs
nature:
ratio: '4:3'
highlightLanguage: r
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
slideNumberFormat: "%current%/%total%"
include: NULL
---
exclude: true
count: false
```{r,echo=FALSE,child="assets/header-slide.Rmd"}
```
```{r,include=FALSE}
# load the packages you need
library(dplyr)
library(tidyr)
library(tidyverse)
#library(stringr)
library(ggplot2)
#library(plotly)
#library(pheatmap)
#library(DESeq2)
#library(edgeR)
library(kableExtra)
```
---
name: content
class: spaced
## Contents
* [Reactivity](#react)
* [Isolate reactivity](#isolate)
* [observeEvent()](#observe)
* [Updating Widgets](#updating)
* [Error Validation](#error)
* [Download Button](#download)
* [Modularizing reactivity](#module)
---
name: react
## Reactivity
.size-95[
<img src="assets/images/react-code1.png" alt="drawing" width="800"/>
]
---
name: react1
## Reactivity
.size-95[
<img src="assets/images/react-code2.png" alt="drawing" width="800"/>
]
---
name: react2
## Reactivity
.size-95[
<img src="assets/images/react-code3.png" alt="drawing" width="800"/>
]
---
name: react3
## Reactivity
.size-95[
<img src="assets/images/react-code4.png" alt="drawing" width="800"/>
]
---
name: react4
## Reactivity
.size-95[
<img src="assets/images/react5.png" alt="drawing" width="800"/>
]
---
name: react5
## Reactivity
.size-95[
<img src="assets/images/react6.png" alt="drawing" width="800"/>
]
---
name: isolate
## Isolate reactivity
* Reactivity can be controlled.
--
* You will notice that as soon as you try to change the title, the histogram will update with new values
.size-95[
<img src="assets/images/isolate1.png" alt="drawing" width="800"/>
]
---
name: isolate2
## Isolate reactivity
.size-95[
<img src="assets/images/isolate2.png" alt="drawing" width="800"/>
]
---
name: isolate3
## Isolate reactivity
.size-95[
<img src="assets/images/isolate3.png" alt="drawing" width="800"/>
]
---
name:isolate4
## Isolate reactivity
.size-95[
<img src="assets/images/isolate4.png" alt="drawing" width="800"/>
]
---
name:observe
## observeEvent()
.size-95[
<img src="assets/images/observe.png" alt="drawing" width="500"/>
]
---
name: updating
## Updating widgets
* Widgets can be updated once initialised.
* Add third argument **session** to server function
```
server=function(input,output,session) {}
```
--
* Example of a typical UI
```
ui=fluidPage(
selectInput("select-input",label="selectInput",choices=c("A","B","C")),
numericInput("numeric-input",label="numericInput",value=5,min=1,max=10),
sliderInput("slider-input",label="sliderInput",value=5,min=1,max=10),
)
```
--
* Update functions can be used to update input widgets
* Reactive observer `observe({})` monitors for a conditional change
```
server=function(input,output,session) {
observe({
if(something) {
updateSelectInput(session,"select-input",label="selectInput",choices=c("D","E","F"))
updateNumericInput(session,"numeric-input",label="numericInput",value=10,min=1,max=10)
updateSliderInput(session,"slider-input",label="sliderInput",value=8,min=1,max=10)
}
})
}
```
---
name: error
## Error validation
* Shiny returns an error with missing or incorrect values
.pull-left-70[.limity100[
```{r,eval=FALSE}
shinyApp(
ui=fluidPage(
selectInput("data_input",label="Select data",
choices=c("","mtcars","faithful","iris")),
tableOutput("table_output")
),
server=function(input, output) {
getdata <- reactive({ get(input$data_input,'package:datasets') })
output$table_output <- renderTable({head(getdata())})
})
```
]]
.pull-right-30[
![](assets/images/val1.png)
]
--
* Errors can be handled in a controlled manner
--
* `validate()` can be used to check input
* `validate()` using `need()`
.pull-left-70[.limity100[
```
shinyApp(
ui=fluidPage(
selectInput("data_input",label="Select data",
choices=c("","mtcars","faithful","iris")),
tableOutput("table_output")
),
server=function(input, output) {
getdata <- reactive({
validate(need(try(input$data_input),"Please select a data set"))
get(input$data_input,'package:datasets')
})
output$table_output <- renderTable({head(getdata())})
})
```
]]
.pull-right-30[
![](assets/images/val2.png)
]
--
* `validate()` using custom function
.pull-left-70[.limity100[
```
valfn <- function(x) if(is.null(x) | is.na(x) | x=="") return("Input data is incorrect.")
shinyApp(
ui=fluidPage(
selectInput("data_input",label="Select data",
choices=c("","mtcars","faithful","iris")),
tableOutput("table_output")
),
server=function(input,output) {
getdata <- reactive({
validate(valfn(try(input$data_input)))
get(input$data_input,'package:datasets')
})
output$table_output <- renderTable({head(getdata())})
})
```
]]
.pull-right-30[
![](assets/images/val3.png)
]
--
* `shiny::req()` checks input variable and silently stops execution
---
name: download
## Download • Data
* Add button and `downloadHandler()` function
```
shinyApp(
ui=fluidPage(
selectInput("data_input",label="Select data",
choices=c("mtcars","faithful","iris")),
textOutput("text_output"),
downloadButton("button_download","Download")
),
server=function(input, output) {
getdata <- reactive({ get(input$data_input, 'package:datasets') })
output$text_output <- renderText(paste0("Selected dataset: ",input$data_input))
output$button_download <- downloadHandler(
filename = function() {
paste0(input$data_input,".csv")
},
content = function(file) {
write.csv(getdata(),file,row.names=FALSE,quote=F)
})
})
```
* Run in system browser if Rstudio browser doesn't work
* See usage of download buttons
---
name: download-plot
## Download • Plots
```
shinyApp(
ui=fluidPage(
selectInput("data_input",label="Select data",
choices=c("mtcars","faithful","iris")),
textOutput("text_output"),
plotOutput("plot_output",width="400px"),
downloadButton("button_download", "Download")
),
server=function(input, output) {
getdata <- reactive({ get(input$data_input, 'package:datasets') })
output$text_output <- renderText(paste0("Selected dataset: ",input$data_input))
output$plot_output <- renderPlot({hist(getdata()[, 1])})
output$button_download <- downloadHandler(
filename = function() {
paste0(input$data_input,".png")
},
content = function(file) {
png(file)
hist(getdata()[, 1])
dev.off()
})
})
```
* Run in system browser if Rstudio browser doesn't work
* See usage of download buttons
---
name: module
## Modularizing Reactivity
.size-95[
<img src="assets/images/shiny-mod.png" alt="drawing" width="800"/>
]
---
name: end_slide
class: end-slide, middle
count: false
# Thank you. Questions?
Slide courtesy: Roy Francis (NBIS, RaukR2021)
```{r,echo=FALSE,child="assets/footer-slide.Rmd"}
```
```{r,include=FALSE,eval=FALSE}
# manually run this to render this document to HTML
rmarkdown::render("slide_sample.Rmd")
# manually run this to convert HTML to PDF
#pagedown::chrome_print("slide_sample.html",output="slide_sample.pdf")
```