-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathd1_shiny_slides.RMD
1338 lines (1090 loc) · 44.5 KB
/
d1_shiny_slides.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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "Data Visualisation using RShiny"
author: "Laurie Baker, Elaine Ferguson, Will Harvey and Rachel Steenson"
date: "**Tanzania**, August 2019"
output:
ioslides_presentation:
widescreen: true
runtime: shiny
---
```{r, echo=FALSE, results='hide', message=FALSE, warning=FALSE}
library(dplyr)
library(ggplot2)
library(lubridate)
library(leaflet)
library(rgdal)
library(kableExtra)
library(shiny)
library(png)
library(RColorBrewer)
# Load data
raw_data <- read.csv("data/raw_data.csv", stringsAsFactors = FALSE)
region_shp <- readOGR("data/TZ_Region_2012", "TZ_Region_2012")
# Format as a date
raw_data$date <- as.Date(raw_data$date)
# Create breaks for ts app
yrs <- c(unique(year(raw_data$date)), 2015) # Extract year and take only the unique years
plot_breaks = seq(from=0, to=12*length(yrs)-1, by=12)
# Create a colour palette
col_palette <- brewer.pal(name="Dark2", n=8)
```
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
<style>
div.footnotes {
position: absolute;
bottom: 0;
margin-bottom: 10px;
width: 80%;
font-size: 0.6em;}
.blue {color: #4E23B8;}
.ui-background {background-color: #fcf0cd;}
.server-background {background-color: #dfecfc;}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('slide:not(.backdrop):not(.title-slide)').append('<div class=\"footnotes\">');
$('footnote').each(function(index) {
var text = $(this).html();
var fnNum = (index+1).toString();
$(this).html(fnNum.sup());
var footnote = fnNum + '. ' + text + '<br/>';
var oldContent = $(this).parents('slide').children('div.footnotes').html();
var newContent = oldContent + footnote;
$(this).parents('slide').children('div.footnotes').html(newContent);
});
});
</script>
<!----------------------------------------------------------------------------->
## Course Overview {.smaller}
<h3><b>Day 1:</b></h3>
<ul>
<li> 1.1 Getting to know your data </li>
<li> 1.2 Data subsetting and summarising </li>
<li> 1.3 Build exploratory plots </li>
<li> <b class="blue"> 1.4 Building an interactive plot in RShiny </b></li>
</ul>
<h3><b>Day 2:</b></h3>
<ul>
<li> 2.1 Introduction to leaflet </li>
<li> 2.2 Building a leaflet map in R </li>
<li> 2.3 Build an interactive map in RShiny </li>
</ul>
<h3><b>Day 3:</b></h3>
<ul>
<li> 3.1 Review </li>
<li> 3.2 Build your own apps! </li>
</ul>
<!----------------------------------------------------------------------------->
## Building an interactive plot in RShiny
A shiny app is normally built with 2 sections:
- The <b>ui</b> (user interface) contains code for the part of the app that the user sees.
- The <b>server</b> contains code for the processing behind the user interface.
These can be contained in one R script, or as multiple R scripts saved in the same folder.
<!----------------------------------------------------------------------------->
## Your turn
Complete section 1.4a of the handout.
<!----------------------------------------------------------------------------->
## Summary - section 1.4a
- The 2 methods are very similar
- It can be easier to separate your code and sections using the 'multiple file' layout.
All of our examples and practice sections will use seperate <b>server.R</b> and <b>ui.R</b> files.
Whenever we show example code, <span class="ui-background">ui code will have a yellow background</span> and <span class="server-background">server code will have a blue background</span>.
<!----------------------------------------------------------------------------->
## Inputs
- To make the app interactive, you need an **input** that the user can change
- Shiny includes a selection of functions for this called <b>widgets</b>.
- These are used in the <b>ui</b> to set the options for the user to interact with.
``` {r, echo=FALSE}
widgets <- data.frame(Name=c("actionButton()", "checkboxInput()", "checkboxGroupInput()",
"dateInput()", "dateRangeInput()", "numericInput()", "radioButtons()",
"selectInput()", "sliderInput()", "textInput()"),
Description=c("a button click input", "a single checkbox",
"a set of checkboxes where multiple can be selected",
"a calendar for date selection",
"a pair of calendars for start and end date selection",
"a free-text for numbers", "a set of buttons where only 1 can be selected",
"a dropdown menu", "a slider bar", "a free-text for letters/words"))
kable_styling(kable(widgets), font_size=16, bootstrap_options="condensed") %>%
column_spec(column=1, background="#fcf0cd")
```
<!----------------------------------------------------------------------------->
## Outputs
- An **output** is required to show the user the effects of their **input**
- ``render()`` is used in the <b>server</b> to generate the output
- ``output()`` is used in the <b>ui</b> to display the output to the user
``` {r, echo=FALSE}
outputs <- data.frame("render"=c("renderImage()", "renderPlot()", "renderPrint()",
"renderTable()", "DT::renderDataTable()", "renderText()",
"rendeerUI()"),
"output"=c("imageOutput()", "plotOutput()", "verbatimTextOutput()",
"tableOutput()", "dataTableOutput()",
"textOutput()", "uiOutput() or htmlOutput()"),
"Produces"=c("an image", "a plot/map", "any printed output formatted as code",
"a table", "an interactable table", "any character string formatted to match app",
"any character string formatted with raw HTML code"))
kable_styling(kable(outputs), font_size=16, bootstrap_options="condensed") %>%
column_spec(column=1, background="#dfecfc") %>%
column_spec(column=2, background="#fcf0cd")
```
<!----------------------------------------------------------------------------->
## Using inputs and outputs together
<b>ui</b>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
# Input
radioButtons(inputId = "radio", label = "Choose a number:", selected = 1,
choices = list("Choice 1" = 1, "Choice 2" = 2, "Choice 3" = 3))
# Output
verbatimTextOutput("chosen_number")
```
<b>server</b>
```{r, echo=TRUE, eval=FALSE, class.source="server-background"}
# Render
output$chosen_number <- renderPrint({
input$radio
})
```
<!----------------------------------------------------------------------------->
## Using inputs and outputs together
<br>
```{r, echo=FALSE}
shinyApp(
ui = fluidPage(
tags$head(
tags$style(HTML("
#txt {font-size: 20px;}
#txt b {font-family: 'Lucida Console', Monospace; color: #5bb662; font-size: 20px; font-weight: normal;}
"))),
HTML("<div id='txt'>Input: <b>radioButtons()</b></div>"),
radioButtons(inputId="radio", label="Choose a number:", selected=1,
choices=list("Choice 1"=1, "Choice 2"=2, "Choice 3"=3)),
br(),
HTML("<div id='txt'>Input: <b>textOutput()</b></div>"),
verbatimTextOutput("chosen_number")
),
server = function(input, output) {
output$chosen_number <- renderPrint({
input$radio
})
},
options = list(height = 500)
)
```
<!----------------------------------------------------------------------------->
##
<center>
<h2 class="blue"> What if we want the user to select <br>
what data is shown? </h2>
</center>
<!----------------------------------------------------------------------------->
## User defined barplot
Before, we had you create a barplot of cases by sex:
```{r, eval = F, echo = T}
ggplot() +
geom_bar(data=raw_data, aes(x=sex, fill=sex)) +
theme_classic()
```
And by species:
```{r, eval = F, echo = T}
ggplot() +
geom_bar(data=raw_data, aes(x=species, fill=species)) +
theme_classic()
```
<br>
<span class="blue">What part of the code changes to make those two plots?<span>
<!----------------------------------------------------------------------------->
## User defined barplot
- In Shiny, we can let the user define what to plot.
- E.g. rather than showing 2 plots, the user can swap between sex or species using the dropdown menu provided.
<br><br>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
selectInput(inputId = "xaxis",
label = h3("Select the x-axis variable:"),
choices = list("Sex" = "sex", "Species" = "species"),
selected = 1)
```
```{r, echo=FALSE}
shinyApp(
ui = fluidPage(
tags$head(
tags$style(HTML("
#txt {font-size: 20px;}
#txt b {font-family: 'Lucida Console', Monospace; color: #5bb662; font-size: 20px; font-weight: normal;}
"))),
selectInput("xaxis", label = h3("Select the x-axis variable:"),
choices = list("Sex" = "sex", "Species" = "species"),
selected = 1)
),
server = function(input, output) {}
)
```
<!----------------------------------------------------------------------------->
## User defined barplot {.smaller}
- The plot is made interactive by using the user's selection as an input in our server code.<br>
- We then make the plot visible to the user by adding an output to the ui.<br>
```{r, eval = F, echo = T, class.source="server-background"}
output$barPlot <- renderPlot({
ggplot() +
geom_bar(data=raw_data, aes_string(x=input$xaxis, fill=input$xaxis)) +
theme_classic()
})
```
```{r, eval = F, echo = T, class.source="ui-background"}
plotOutput("barPlot", height=200)
```
```{r, echo=FALSE}
shinyApp(
ui = fluidPage(
tags$head(
tags$style(HTML("
#txt {font-size: 20px;}
#txt b {font-family: 'Lucida Console', Monospace; color: #5bb662; font-size: 20px; font-weight: normal;}
"))),
sidebarLayout(
sidebarPanel(
selectInput("xaxis", label = h4("Select the x-axis variable:"),
choices = list("Sex" = "sex", "Species" = "species"),
selected = 1)
),
mainPanel(
plotOutput("barPlot", height=200)
)
)
),
server = function(input, output) {
output$barPlot <- renderPlot({
ggplot() +
geom_bar(data=raw_data, aes_string(x=input$xaxis, fill=input$xaxis)) +
theme_classic() +
theme(axis.text = element_text(size=14),
axis.title = element_text(size=18),
plot.title = element_text(size=20),
legend.title = element_text(size=18),
legend.text = element_text(size=14))
})
}
)
```
<!----------------------------------------------------------------------------->
## Your turn
Read the <em>App Guide</em> handout, then complete section 1.4b of the handout.<br><br>
<center><img src="figures/day1_barplot_1.png" style="width: 90%;" /></center>
<!----------------------------------------------------------------------------->
## Summary - section 1.4b ui code
<b>shinyUI Side Panel</b>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
selectInput(inputId = "xaxis",
label = h3("Select the x-axis variable:"),
choices = list("Sex" = "sex", "Species" = "species", "Age" = "age"),
selected = 1)
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4b server code
<b>shinyServer Section</b>
```{r, echo=TRUE, eval=FALSE, class.source="server-background"}
output$barPlot <- renderPlot({
ggplot() +
geom_bar(data=raw_data,
aes_string(x=input$xaxis),
fill=col_palette[1]) +
labs(x=paste0(input$xaxis), y="Number of records") +
...
})
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4b app
```{r, echo=FALSE}
shinyApp(
ui = fluidPage(
tags$head(
tags$style(HTML("
#txt {font-size: 20px;}
#txt b {font-family: 'Lucida Console', Monospace; color: #5bb662; font-size: 20px; font-weight: normal;}
"))),
sidebarLayout(
sidebarPanel(
selectInput("xaxis", label = h3("Select the x-axis variable:"),
choices = list("Sex" = "sex", "Species" = "species", "Age" = "age"),
selected = 1)
),
mainPanel(
plotOutput("barPlot", height=400)
)
)
),
server = function(input, output) {
output$barPlot <- renderPlot({
ggplot() +
geom_bar(data=raw_data, aes_string(x=input$xaxis), fill=col_palette[1]) +
labs(x=paste0(input$xaxis), y="Number of records") +
theme_classic() +
theme(axis.text = element_text(size=14),
axis.title = element_text(size=18),
plot.title = element_text(size=20),
legend.title = element_text(size=18),
legend.text = element_text(size=14))
})
}
)
```
<!----------------------------------------------------------------------------->
## Your turn
Complete section 1.4c of the handout.<br><br>
<center><img src="figures/day1_barplot_2.png" style="width: 90%;" /></center>
<!----------------------------------------------------------------------------->
## Summary - section 1.4c ui code
<b>shinyUI Side Panel</b>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
# Existing text output
verbatimTextOutput("output_text")
# New text output
verbatimTextOutput("output_values")
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4c server code
<b>shinyServer Section</b>
```{r, echo=TRUE, eval=FALSE, class.source="server-background"}
# Existing text output
output$output_text <- renderPrint({
paste0("You have chosen to show '", input$xaxis, "' on the x-axis.")
})
# New text output
output$output_values <- renderPrint({
summary(raw_data[[input$xaxis]])
})
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4c app
```{r, echo=FALSE}
shinyApp(
ui = fluidPage(
tags$head(
tags$style(HTML("
#txt {font-size: 20px;}
#txt b {font-family: 'Lucida Console', Monospace; color: #5bb662; font-size: 20px; font-weight: normal;}
"))),
sidebarLayout(
sidebarPanel(
selectInput("xaxis", label = h3("Select the x-axis variable:"),
choices = list("Sex" = "sex", "Species" = "species", "Age" = "age"),
selected = 1),
br(),
verbatimTextOutput("output_text"),
br(),
verbatimTextOutput("output_values")
),
mainPanel(
plotOutput("barPlot", height=400)
)
)
),
server = function(input, output) {
output$barPlot <- renderPlot({
ggplot() +
geom_bar(data=raw_data, aes_string(x=input$xaxis), fill=col_palette[1]) +
labs(x=input$xaxis, y="Number of records") +
theme_classic() +
theme(axis.text = element_text(size=14),
axis.title = element_text(size=18),
plot.title = element_text(size=20),
legend.title = element_text(size=18),
legend.text = element_text(size=14))
})
output$output_text <- renderPrint({
paste0("You have chosen to show '", input$xaxis, "' on the x-axis.")
})
output$output_values <- renderPrint({
summary(raw_data[[input$xaxis]])
})
}
)
```
<!----------------------------------------------------------------------------->
## Making your code 'reactive'
- All code within the server must be contained within a **reactive** element, otherwise the app will fail to run.
- The previous examples used ``render()`` functions, which are **reactive** but limited to a small amount of code.
```{r echo=TRUE, eval=FALSE, class.source="ui-background"}
output$output_text <- renderPrint({
paste0("You have chosen to show '", input$xaxis, "' on the x-axis.")
})
```
## Making your code 'reactive' contd
- If we want to process the data based on user input (e.g. filter, summarise), we need to wrap the code within a **reactive function**.
- ``reactive()``
- ``eventReactive()``
- ``reactiveValues()``
- ``observeEvent()``
<!----------------------------------------------------------------------------->
##
<center>
<h2 class="blue"> What if we want the user to subset the data? </h2>
</center>
<!----------------------------------------------------------------------------->
## The ``reactive()`` function
- The ``reactive()`` function is used to carry out data processing in response to one or more user inputs, with the output saved as an object
- Objects created in the function should be done with an ``=`` NOT ``<-``
- The last line of the function should be the object you would like to be saved overall (e.g. a data subset)
- When <b>any</b> input used in the ``reactive`` function is changed, the output will automatically update
<!----------------------------------------------------------------------------->
## An example with the ``reactive()`` function {.smaller}
<b>shinyUI Side Panel</b>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
radioButtons(inputId = "select_species", label = "Select a Species:",
choices = sort(unique(raw_data$species))),
```
<b>shinyUI Main Panel</b>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
tableOutput("chosen_species_info")
```
<b>shinyServer Section</b>
```{r, echo=TRUE, eval=FALSE, class.source="server-background"}
data_sub <- reactive({
data_subset = raw_data %>%
filter(species == input$select_species)
data_subset = head(data_subset)
data_subset
})
output$chosen_species_info <- renderTable({
data_sub()
})
```
<!----------------------------------------------------------------------------->
## An example with the ``reactive()`` function
<br><br>
```{r, echo=FALSE}
shinyApp(
ui = fluidPage(
tags$head(
tags$style(HTML("
#txt {font-size: 20px;}
#txt b {font-family: 'Lucida Console', Monospace; color: #5bb662; font-size: 20px; font-weight: normal;}
"))),
sidebarLayout(
sidebarPanel(
HTML("<div id='txt'>Input: <b>radioButtons()</b></div>"),
radioButtons(inputId = "select_species", label = "Select a Species:",
choices = sort(unique(raw_data$species)))),
mainPanel(
HTML("<div id='txt'>Output: <b>tableOutput()</b></div>"),
tableOutput("chosen_species_info")
))),
server = function(input, output) {
data_sub <- reactive({
data_subset = raw_data %>%
filter(species == input$select_species)
data_subset = head(data_subset)
data_subset
})
output$chosen_species_info <- renderTable({
data_sub()
})
},
options = list(height = 500)
)
```
<!----------------------------------------------------------------------------->
## Your turn
Complete section 1.4d of the handout.<br><br>
<center><img src="figures/day1_timeseries_1.png" style="width: 90%;" /></center>
<!----------------------------------------------------------------------------->
## Summary - section 1.4d ui code
<b>Above shinyUI Section</b>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
options_list <- c("All Regions", sort(unique(raw_data$region)))
```
<b>shinyUI Side Panel</b>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
selectInput("select_region", label = h3("Select a Region:"),
choices = options_list,
selected = 1)
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4d server code (1/2)
<b>Above shinyServer Section</b>
```{r, echo=TRUE, eval=FALSE, class.source="server-background"}
overall_summary <- raw_data %>%
group_by(month) %>%
summarise(n = length(month)) %>%
mutate(region = "All Regions")
region_summary <- raw_data %>%
group_by(month, region) %>%
summarise(n = length(month))
summary_data <- bind_rows(overall_summary, region_summary)
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4d server code (2/2)
<b>shinyServer Section</b>
```{r, echo=TRUE, eval=FALSE, class.source="server-background"}
data_subset <- reactive({
data_sub = summary_data %>%
filter(region==input$select_region | region=="All Regions")
as.data.frame(data_sub)
})
output$tsPlot <- renderPlot({
ggplot() +
geom_path(data=data_subset(), aes(x=month, y=n, color=region), size=1) +
scale_color_manual(name="Region", values=col_palette) +
labs(title=input$select_region, x="Date (Month)", y="Number of records") +
...
})
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4d app
```{r, echo=FALSE}
overall_summary_1.4d <- raw_data %>%
group_by(month) %>%
summarise(n = length(month)) %>%
mutate(region = "All Regions")
region_summary_1.4d <- raw_data %>%
group_by(month, region) %>%
summarise(n = length(month))
summary_data_1.4d <- bind_rows(overall_summary_1.4d, region_summary_1.4d)
shinyApp(
ui = fluidPage(
sidebarLayout(
sidebarPanel(
selectInput("select_region", label = h3("Select a Region:"),
choices = c("All Regions", sort(unique(raw_data$region))),
selected = 1)),
mainPanel(
plotOutput("tsPlot", height=400)))
),
server = function(input, output) {
data_subset <- reactive({
data_sub = summary_data_1.4d %>%
filter(region==input$select_region | region=="All Regions")
as.data.frame(data_sub)
})
output$tsPlot <- renderPlot({
ggplot() +
geom_path(data=data_subset(), aes(x=month, y=n, color=region), size=1) +
scale_color_manual(name="Region", values=col_palette) +
labs(title=input$select_region, x="Date (Month)", y="Number of records") +
scale_x_continuous(breaks=plot_breaks, labels=yrs,
limits=c(min(overall_summary_1.4d$month), max(overall_summary_1.4d$month))) +
theme_classic() +
theme(axis.text = element_text(size=14), legend.text = element_text(size=14),
axis.title = element_text(size=18), legend.title = element_text(size=18),
plot.title = element_text(size=20))
})
}
)
```
<!----------------------------------------------------------------------------->
## Your turn
Complete section 1.4e of the handout.<br><br>
<center><img src="figures/day1_timeseries_2.png" style="width: 90%;" /></center>
<!----------------------------------------------------------------------------->
## Summary - section 1.4e ui code
<b>shinyUI Side Panel </b>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
checkboxGroupInput("select_species", label = h3("Select a Species"),
choices = list("Cat" = "cat", "Dog" = "dog", "Human"="human",
"Jackal"="jackal", "Lion"="lion"),
selected = c("cat", "dog", "human", "jackal", "lion"))
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4e server code (1/2) {.smaller}
<b>Above shinyServer Section</b>
```{r, echo=TRUE, eval=FALSE, class.source="server-background"}
overall_summary <- raw_data %>%
group_by(month) %>%
summarise(n = length(month)) %>%
mutate(region="All data",
species="All data")
region_allspecies_summary <- raw_data %>%
group_by(month, region) %>%
summarise(n = length(month)) %>%
mutate(species="All species")
species_allregions_summary <- raw_data %>%
group_by(month, species) %>%
summarise(n = length(month)) %>%
mutate(region="All Regions")
region_species_summary <- raw_data %>%
group_by(month, region, species) %>%
summarise(n = length(month))
summary_data <- bind_rows(overall_summary, region_allspecies_summary,
species_allregions_summary, region_species_summary)
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4e server code (2/2) {.smaller}
<b>shinyServer Section</b>
```{r, echo=TRUE, eval=FALSE, class.source="server-background"}
data_subset <- reactive({
data_sub = summary_data %>%
filter(region==input$select_region | region=="All data")
if(length(input$select_species)>0){
data_sub = data_sub %>%
filter(species %in% input$select_species | species=="All species" | species=="All data")
} else {
data_sub = data_sub %>%
filter(species=="All species" | species=="All data")
}
data_sub = data_sub %>%
group_by(month, region, species) %>%
summarise(n = sum(n))
as.data.frame(data_sub)
})
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4e app
```{r, echo=FALSE}
overall_summary_1.4e <- raw_data %>%
group_by(month) %>%
summarise(n = length(month)) %>%
mutate(region="All data",
species="All data")
region_allspecies_summary_1.4e <- raw_data %>%
group_by(month, region) %>%
summarise(n = length(month)) %>%
mutate(species="All species")
species_allregions_summary_1.4e <- raw_data %>%
group_by(month, species) %>%
summarise(n = length(month)) %>%
mutate(region="All Regions")
region_species_summary_1.4e <- raw_data %>%
group_by(month, region, species) %>%
summarise(n = length(month))
summary_data_1.4e <- bind_rows(overall_summary_1.4e, region_allspecies_summary_1.4e,
species_allregions_summary_1.4e, region_species_summary_1.4e)
shinyApp(
ui = fluidPage(
sidebarLayout(
sidebarPanel(
selectInput("select_region", label = h3("Select a Region:"),
choices = c("All Regions", sort(unique(raw_data$region))),
selected = 1),
br(),
checkboxGroupInput("select_species", label = h3("Select a Species"),
choices = list("Cat" = "cat", "Dog" = "dog", "Human"="human",
"Jackal"="jackal", "Lion"="lion"),
selected = c("cat", "dog", "human", "jackal", "lion"))),
mainPanel(
plotOutput("tsPlot", height=400)))),
server = function(input, output) {
data_subset <- reactive({
data_sub = summary_data_1.4e %>%
filter(region==input$select_region | region=="All data")
if(length(input$select_species)>0){
data_sub = data_sub %>%
filter(species %in% input$select_species | species=="All species" | species=="All data")
} else {
data_sub = data_sub %>%
filter(species=="All species" | species=="All data")
}
data_sub = data_sub %>%
group_by(month, region, species) %>%
summarise(n = sum(n))
as.data.frame(data_sub)
})
output$tsPlot <- renderPlot({
ggplot() +
geom_path(data=data_subset(), aes(x=month, y=n, color=species), size=1) +
scale_color_manual(name="Species", values=col_palette) +
labs(title=input$select_region, x="Date (Month)", y="Number of records") +
scale_x_continuous(breaks=plot_breaks, labels=yrs,
limits=c(min(overall_summary_1.4e$month), max(overall_summary_1.4e$month))) +
theme_classic() +
theme(axis.text = element_text(size=14),
axis.title = element_text(size=18),
plot.title = element_text(size=20),
legend.title = element_text(size=18),
legend.text = element_text(size=14))
})
}
)
```
<!----------------------------------------------------------------------------->
## Your turn
Complete section 1.4f of the handout.<br><br>
<center><img src="figures/day1_timeseries_3.png" style="width: 90%;" /></center>
<!----------------------------------------------------------------------------->
## Summary - section 1.4f ui code
<b>shinyUI Side Panel</b>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
sliderInput("age_slider", label = h3("Select a maximum age"),
min = min_age, max = max_age, value = c(min_age, max_age))
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4f server code {.smaller}
<b>shinyServer Section</b>
```{r, echo=TRUE, eval=FALSE, class.source="server-background"}
data_subset <- reactive({
data_sub = summary_data %>%
filter(region==input$select_region | region=="All data")
if(length(input$select_species)>0){
data_sub = data_sub %>%
filter(species %in% input$select_species | species=="All species" | species=="All data")
} else {
data_sub = data_sub %>%
filter(species=="All species" | species=="All data")
}
data_sub = data_sub %>%
filter(age >= input$age_slider[1] & age <= input$age_slider[2] | is.na(age))
data_sub = data_sub %>%
group_by(month, region, species) %>%
summarise(n = sum(n))
as.data.frame(data_sub)
})
```
<!----------------------------------------------------------------------------->
## Summary - section 1.4f app
```{r, echo=FALSE}
overall_summary_1.4f <- raw_data %>%
group_by(month) %>%
summarise(n = length(month)) %>%
mutate(region="All data",
species="All data")
region_allspecies_summary_1.4f <- raw_data %>%
group_by(month, region, age) %>%
summarise(n = length(month)) %>%
mutate(species="All species")
species_allregions_summary_1.4f <- raw_data %>%
group_by(month, species, age) %>%
summarise(n = length(month)) %>%
mutate(region="All Regions")
region_species_summary_1.4f <- raw_data %>%
group_by(month, region, species, age) %>%
summarise(n = length(month))
summary_data_1.4f <- bind_rows(overall_summary_1.4f, region_allspecies_summary_1.4f,
species_allregions_summary_1.4f, region_species_summary_1.4f)
shinyApp(
ui = fluidPage(
sidebarLayout(
sidebarPanel(
selectInput("select_region", label = h4("Select a Region:"),
choices = c("All Regions", sort(unique(raw_data$region))),
selected = 1),
br(),
checkboxGroupInput("select_species", label = h4("Select a Species"),
choices = list("Cat" = "cat", "Dog" = "dog", "Human"="human",
"Jackal"="jackal", "Lion"="lion"),
selected = c("cat", "dog", "human", "jackal", "lion")),
br(),
sliderInput("age_slider", label = h4("Select a maximum age"),
min = min(raw_data$age), max = max(raw_data$age), value = c(min(raw_data$age), max(raw_data$age)))),
mainPanel(
plotOutput("tsPlot", height=400)))),
server = function(input, output) {
data_subset <- reactive({
data_sub = summary_data_1.4f %>%
filter(region==input$select_region | region=="All data")
if(length(input$select_species)>0){
data_sub = data_sub %>%
filter(species %in% input$select_species | species=="All species" | species=="All data")
} else {
data_sub = data_sub %>%
filter(species=="All species" | species=="All data")
}
data_sub = data_sub %>%
filter(age >= input$age_slider[1] & age <= input$age_slider[2] | is.na(age))
data_sub = data_sub %>%
group_by(month, region, species) %>%
summarise(n = sum(n))
as.data.frame(data_sub)
})
output$tsPlot <- renderPlot({
ggplot() +
geom_path(data=data_subset(), aes(x=month, y=n, color=species), size=1) +
scale_color_manual(name="Species", values=col_palette) +
labs(title=input$select_region, x="Date (Month)", y="Number of records") +
scale_x_continuous(breaks=plot_breaks, labels=yrs,
limits=c(min(overall_summary_1.4f$month), max(overall_summary_1.4f$month))) +
theme_classic() +
theme(axis.text = element_text(size=14),
axis.title = element_text(size=18),
plot.title = element_text(size=20),
legend.title = element_text(size=18),
legend.text = element_text(size=14))
})
}
)
```
<!----------------------------------------------------------------------------->
##
<center>
<h2 class="blue"> What if we want to delay the app changes? </h2>
</center>
<!----------------------------------------------------------------------------->
## The ``eventReactive()`` function
- The ``eventReactive`` function is very similar to the ``reactive()`` function - it is used to carry out data processing.
- The difference is that it is triggered by a specific user input
- The input can be set as any of the widgets in your app, but it works well with ``actionButton()``
- ``eventReactive()`` returns ``NULL`` until the button is pressed, which means any outputs that rely on it are hidden until the button is pressed...
<!----------------------------------------------------------------------------->
## An example with the ``eventReactive()`` function
<b>shinyUI Side Panel</b>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
radioButtons(inputId = "select_species", label = "Select a Species:",
choices = sort(unique(raw_data$species)),
selected = 1)
actionButton(inputId="go_button", label="Click to generate the plot:")
```
<b>shinyUI Main Panel</b>
```{r, echo=TRUE, eval=FALSE, class.source="ui-background"}
plotOutput("chosen_species")
```
<!----------------------------------------------------------------------------->
## An example with the ``eventReactive()`` function