-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.Rmd
745 lines (535 loc) · 17.5 KB
/
index.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
---
title: "Crea tu dashboard en `R`: Visualizando datos del mundial FIFA ⚽"
author: "Dra Shazia Ruybal Pesántez"
institute: "Brown Bag Seminar InnovaLab"
date: '2022-10-13'
output:
xaringan::moon_reader:
css: ["default", "rladies", "custom.css", "rladies-fonts"]
lib_dir: libs
nature:
slideNumberFormat: "%current%"
highlightStyle: github
highlightLines: true
ratio: 16:9
countIncrementalSlides: false
titleSlideClass: ["left", "bottom", "my-title"]
beforeInit: ["https://platform.twitter.com/widgets.js"]
seal: false
---
```{r setup, include=FALSE}
options(htmltools.dir.version = FALSE, htmltools.preserve.raw = FALSE)
knitr::opts_chunk$set(
fig.width=9, fig.height=3.5, fig.retina=3,
out.width = "100%",
cache = FALSE,
echo = TRUE,
message = FALSE,
warning = FALSE,
hiline = TRUE
)
library(xaringanthemer)
library(xaringanExtra)
library(showtext)
library(fontawesome)
library(metathis)
library(tidyverse)
library(here)
```
```{r xaringan-themer, include=FALSE, warning=FALSE}
style_duo_accent(
header_font_google = google_font("News Cycle"),
text_font_google = google_font("Dosis", "300", "300i"),
code_font_google = google_font("Fira Mono")
)
```
```{r xaringan-extras, echo=FALSE}
# xaringanExtra::use_scribble()
xaringanExtra::use_panelset()
xaringanExtra::use_clipboard()
# xaringanExtra::use_share_again()
```
```{r metathis, echo=FALSE}
meta() %>%
meta_name("github-repo" = "shaziaruybal/dashboard-mundialFIFA") %>%
meta_social(
title = "Crea tu dashboard en `R`: Visualizando datos del mundial FIFA",
description = paste(
"Un taller que te enseñará a crear un dashboard en R utilizando el paquete R Markdown.",
"Presentado en el Brown Bag Seminar de InnovaLab en octubre 2022."
),
url = "https://shaziaruybal.github.io/dashboard-mundialFIFA/",
image = "https://shaziaruybal.github.io/dashboard-mundialFIFA/img/social-share-card.png",
og_type = "website",
og_author = "Shazia Ruybal-Pesántez",
twitter_card_type = "summary_large_image",
twitter_creator = "@DrShaziaRuybal",
twitter_site = "@DrShaziaRuybal"
)
```
class: bottom, center, inverse
background-image: url("img/fifa.jpeg")
background-position: top
background-size: 100% 54%
.bottom[
## **`r rmarkdown::metadata$title`**
### **`r rmarkdown::metadata$author`**
`r rmarkdown::metadata$institute`
`r rmarkdown::metadata$date`
[`r fontawesome::fa(name = "github")` @shaziaruybal](http://github.com/shaziaruybal) | [`r fontawesome::fa(name = "twitter")` @DrShaziaRuybal](http://twitter.com/DrShaziaRuybal) |[`r fontawesome::fa(name = "link")` shaziaruybal.com](https://shaziaruybal.com)
]
---
name: about-me
class: middle, center, inverse
## ¡Mucho gusto!
<img style="border-radius: 50%;" src="img/shazia.png" width="250px"/>
### Shazia Ruybal-Pesántez
#### **Postdoc - Epidemiología Genómica**
##### Imperial College London/MRC Centre for Global Infectious Disease Analysis
[`r fontawesome::fa(name = "github")` @shaziaruybal](http://github.com/shaziaruybal)
[`r fontawesome::fa(name = "twitter")` @DrShaziaRuybal](http://twitter.com/DrShaziaRuybal)
[`r fontawesome::fa(name = "link")` shaziaruybal.com](https://shaziaruybal.com)
---
layout: true
<!--this adds the repo link footer to all slides, depends on footer-link class in custom.css-->
<a class="footer-link" href="https://github.com/shaziaruybal/dashboard-mundialFIFA"><strong><i class="fab fa-github"></i> github.com/shaziaruybal/dashboard-mundialFIFA </strong>
• Brown Bag Seminar </a>
---
name: welcometoR
background-image: url("img/welcome_to_rstats_twitter.png")
background-size: contain
background-position: middle
.footnote[
*Arte por [@alison_horst](https://github.com/allisonhorst/stats-illustrations)*
]
---
class: center, middle
# Conozcámonos un poco
--
## 👍 si te consideras un principiante en `R` y/o `R Markdown`
--
## ❤️ si te sientes comod@ utilizando `R` y `R Markdown`
---
class: inverse, center
# `r fontawesome::fa("chalkboard")`
# El taller de hoy te enseñará:
--
### Creación de un dashboard utilizando `rmarkdown` y `flexdashboard`
--
### Visualización del dataset del mundial FIFA en un dashboard
--
### Los materiales de este taller están disponibles libremente y pueden servirte como ejemplo para crear tu propio dashboard!
--
.left-column[
.pull-left[
### [`r fontawesome::fa("github")` Materiales](https://github.com/shaziaruybal/dashboard-mundialFIFA)
]]
.right-column[
.pull-left[
### [`r fontawesome::fa("images")` Diapos](http://shaziaruybal.github.io/dashboard-mundialFIFA)
]
.pull-right[
### [`r fontawesome::fa("youtube")` Grabación](https://youtu.be/Fc1RwRskk08)
]
]
---
background-image: url("img/rmarkdown_wizards.png")
background-size: 85% 85%
background-position: center
.footnote[
*Art by [@alison_horst](https://github.com/allisonhorst/stats-illustrations)*
]
---
class: center, middle inverse
# `r fa("chart-line")`
# ¿Por qué un dashboard?
---
# `r fa("chart-line")` Ventajas de un dashboard
--
### - Permite visualizar datasets complejos
--
### - Enfoque en la información más importante
--
### - Interactividad para el usuario
--
### - Reproducibilidad
--
### - Muchos casos de uso
---
class: inverse, center, middle
# `r fa("circle-question")` ¿En sus investigaciones o trabajos, para qué utilizarían un dashboard?
---
name: paquete
# Paquete `flexdashboard`
.left-column[
<img style="circle" src="img/flexdashboard.png" height="250px" width="250px"/>
]
--
.right-column[
### Desarrollado por RStudio
[`r fa("github")` Repo en Github](https://github.com/rstudio/flexdashboard)
[`r fa("globe")` Documentación](https://pkgs.rstudio.com/flexdashboard/)
- Utiliza `rmarkdown` para publicar visualizaciones estilo dashboard
- Compatibilidad con varios componentes adicionales incluyendo htmlwidgets; diferentes tipos de gráficos; tablas; botones; y texto.
- El diseño consiste de filas y columnas y es flexible y facil de especificar. Los diferentes componentes se adaptan al tamaño de la pantalla.
- Compatibilidad con `shiny` para visualizaciones dinámicas y con `bslib` para personalizar los colores, fuentes, etc
]
---
# 👀 Ojo, si no estas familiarizad@ con `rmarkdown`:
- Para este taller vamos a asumir un conocimiento *básico* de `rmarkdown` y `tidyverse`
- [Para más recursos ⬇️](https://rmarkdown.rstudio.com/lesson-1.html)
![https://rmarkdown.rstudio.com/lesson-1.html](img/rstudio-rmd.png)
---
class: inverse, center, middle
# ¡Empecemos!
![dive-in](https://media.giphy.com/media/UrCpsX5zV2ca1j4iap/giphy.gif?cid=ecf05e47gmxqy07akxcvvf5y3l7cvf9rhw6mhb8jf92su2hh&rid=giphy.gif&ct=g)
---
## Nuestro objetivo hoy
![](img/dashboard_final.png)
---
class: inverse, center, middle
## 🇪🇨 pon la bandera o escribe en el chat a quien le vas en el mundial de Qatar
![](https://media.giphy.com/media/0opAg3FW83SNFKyl8i/giphy.gif?cid=ecf05e47mbbj8vvj45m2xgpaalvuugd6z7fcyoxjdf7le3qr&rid=giphy.gif&ct=g)
---
class: inverse, center, middle
# Ahora construiremos el dashboard 😍
---
# Pasos a seguir
### 1. Crear una nueva plantilla de `flexdashboard` (y 🧶knit!)
### 2. Cargar datos (y limpieza si es necesario)
### 3. Agregar gráficos y tablas
### 4. Modificar el formato y/o la paleta de colores
### 5. 🧶Knit de nuevo!
---
# Paso 1: Crea la plantilla de tu dashboard con `flexdashboard`
.pull-left[
Instala el paquete `flexdashboard`
```{r eval=F}
install.packages("flexdashboard")
```
Carga la libreria
```{r eval=F}
library(flexdashboard)
```
En el IDE de RStudio, crea un nuevo documento de R Markdown
`File -> New File -> R Markdown -> From Template`
**`r fontawesome::fa("lightbulb")` Tip: ** Usa la plantilla "themed with {bslib}" para más flexibilidad en la presentación
]
.pull-right[
![](img/nuevormd_flex.png)
]
---
class: inverse, center, middle
# Para ver el dashboard "default", haz click en 🧶Knit
---
class: top, center
<video width="1530" height="610" controls>
<source src="vid/flex_default.mp4" type="video/mp4">
</video>
---
# `r fontawesome::fa("x-ray")` La anatomía de un `flexdashboard` .Rmd
.pull-left[
![](img/flex_default_rmd.png)
]
.pull-right[
**Encabezado**
- A traves del YAML podemos modificar el título, los colores, la orientación
**Columns**
- La orientación de cada dashboard puede manejarse con columnas o filas (formato R Markdown)
- Puedes controlar el tamaño con `data-width=` o `data-height=`
**`r fontawesome::fa("lightbulb")` Tip: ** Utiliza `.tabset` para crear pestañas
]
---
# `r fontawesome::fa("x-ray")` La anatomía de un `flexdashboard` .Rmd
.pull-left[
![](img/flex_themed.png)
]
.pull-right[
**Encabezado**
- A traves del YAML podemos modificar el título, los colores, la orientación
**Charts**
- La orientación de cada dashboard puede manejarse con columnas o filas (formato R Markdown)
]
---
class: inverse
# `r fa("table")` Paso 2: Cargar datos
### Utilizaremos los datos de los mundiales de la FIFA del 1930-2014 que se encuentran en Kaggle [kaggle.com/datasets/abecklas/fifa-world-cup](https://www.kaggle.com/datasets/abecklas/fifa-world-cup)
--
### Son 3 documentos .csv:
* WorldCupMatches.csv
* WorldCupPlayers.csv
* WorldCups.csv
--
### Puedes encontrar los datos del taller de hoy aquí: [github.com/shaziaruybal/dashboard-mundialFIFA/data](https://github.com/shaziaruybal/dashboard-mundialFIFA/blob/main/data/)
---
# `r fa("table")` Paso 2: Cargar datos
.pull-left[
Para cargar los datos asignamos objetos a cada dataset
```{r}
partidos <- read.csv("data/WorldCupMatches.csv")
jugadores <- read.csv("data/WorldCupPlayers.csv")
copas <- read.csv("data/WorldCups.csv")
```
#### Ojo que hoy no nos enfocaremos en limpieza de datos
**`r fontawesome::fa("lightbulb")` Tip: ** Carga tus datos en el chunk de "setup"
]
.pull-right[
![](img/setup_chunk.png)
]
---
# `r fa("table")` Exploremos que contiene cada dataset
```{r}
head(copas)
```
---
# `r fa("table")` Exploremos que contiene cada dataset
```{r}
head(jugadores)
```
---
# `r fa("table")` Exploremos que contiene cada dataset
```{r}
head(partidos)
```
---
# `r fa("chart-line")` Paso 3: Agregar gráficos y tablas
.panelset.sideways[
.panel[.panel-name[Visualiza los ganadores]
```{r eval=F}
copas %>%
mutate(Winner = case_when(Winner == "Germany FR" ~ "Germany",
TRUE ~ Winner)) %>%
count(Winner) %>%
ggplot(aes(x=reorder(Winner,n), y=n)) +
geom_col() +
xlab("Campeón") +
theme_minimal()
```
]
.panel[.panel-name[Output]
```{r echo=F}
copas %>%
mutate(Winner = case_when(Winner == "Germany FR" ~ "Germany",
TRUE ~ Winner)) %>%
count(Winner) %>%
ggplot(aes(x=reorder(Winner,n), y=n)) +
geom_col() +
xlab("Campeón") +
theme_minimal()
```
]
.panel[.panel-name[Visualiza los goles]
```{r eval=F}
copas %>%
ggplot(aes(x=Year, y=GoalsScored)) +
geom_line() +
geom_point() +
theme_minimal()
```
]
.panel[.panel-name[Output]
```{r echo=F}
copas %>%
ggplot(aes(x=Year, y=GoalsScored)) +
geom_line() +
geom_point() +
theme_minimal()
```
]
.panel[.panel-name[Visualiza los top 4]
```{r eval=F}
copas %>%
select(Winner:Fourth) %>%
pivot_longer(cols=Winner:Fourth, names_to="lugar", values_to="pais") %>%
mutate(pais = case_when(pais == "Germany FR" ~ "Germany",
TRUE ~ pais)) %>%
count(pais) %>%
ggplot(aes(x=reorder(pais,n), y=n)) +
geom_col() +
xlab("País") +
theme_minimal() +
theme(axis.text.x = element_text(angle = 45))
```
]
.panel[.panel-name[Output]
```{r echo=F}
copas %>%
select(Winner:Fourth) %>%
pivot_longer(cols=Winner:Fourth, names_to="lugar", values_to="pais") %>%
mutate(pais = case_when(pais == "Germany FR" ~ "Germany",
TRUE ~ pais)) %>%
count(pais) %>%
ggplot(aes(x=reorder(pais,n), y=n)) +
geom_col() +
xlab("País") +
theme_minimal() +
theme(axis.text.x = element_text(angle = 45))
```
]
.panel[.panel-name[Incluye una tabla]
Utiliza el paquete `DT` para mayor interactividad
```{r eval=F}
library(DT)
datatable(copas,
extensions = "Buttons",
options = list(dom = "Bfrtip",
buttons = (list(
"copy", list(
extend = "collection",
buttons = c("csv", "excel"),
text = "Download")))),
rownames = F,
filter = "top",
style = "bootstrap")
```
]
.panel[.panel-name[Output]
![](img/datatable.png)
]
.panel[.panel-name[Modifica el YAML]
```{r eval=F}
---
title: "Explora la copa mundial FIFA desde el 1930-2014"
output:
flexdashboard::flex_dashboard:
theme:
bg: "#101010"
fg: "#FDF7F7"
primary: "#ED79F9"
base_font:
google: Prompt
code_font:
google: JetBrains Mono
orientation: columns
vertical_layout: fill
---
```
]
]
---
# `r fa("chart-line")` Paso 3: Agregar gráficos y tablas
.pull-left[
![](img/chartA.png)
]
.pull-right[
![](img/chartA_edit.png)
]
### ☑️ Hacemos lo mismo para los otros gráficos
---
# `r fontawesome::fa("lightbulb")` Tips
--
### - En el YAML puedes cambiar los colores a tu gusto, pero también existen temas de Bootswatch ya predeterminados que puedes utilizar. Encuéntralos en [bootswatch.com](https://bootswatch.com)
--
### - Puedes agregar interactividad a tus gráficos utilizando el paquete `plotly`
--
### - Puedes aplicar tu tema o paleta de colores a tus gráficos también
```{r eval=F}
thematic::thematic_rmd(font = "auto")
```
---
# `r fa("palette")` Paso 4: Modificar el formato y/o la paleta de colores
### Cambia el tema y la paleta de colores
.pull-left[
![](img/yaml_final.png)
]
.pull-right[
![](img/flex_final.png)
👀 *Quitamos la columna extra para que todos nuestros gráficos estén en una pestaña*
]
---
# `r fa("palette")` Paso 4: Modificar el formato y/o la paleta de colores
### Agrega interactividad con el paquete `plotly`
.pull-left[
```{r eval=F}
library(plotly)
ggplotly(copas %>%
mutate(Winner = case_when(Winner == "Germany FR" ~ "Germany",
TRUE ~ Winner)) %>%
count(Winner) %>%
ggplot(aes(x=reorder(Winner,n), y=n)) +
geom_col() +
xlab("Campeón") +
theme_minimal())
```
]
.pull-right[
```{r include=F}
library(plotly)
ggplotly(copas %>%
mutate(Winner = case_when(Winner == "Germany FR" ~ "Germany",
TRUE ~ Winner)) %>%
count(Winner) %>%
ggplot(aes(x=reorder(Winner,n), y=n)) +
geom_col() +
xlab("Campeón") +
theme_minimal(),
width=300, height=200)
```
]
---
.left-column[
### `r fa("magic")` Paso 5: 🧶Knit de nuevo!
]
.right-column[
![](img/dashboard_final.png)
]
---
class: center, middle
![](https://media.giphy.com/media/gLWTWCg96RA0btDUm0/giphy.gif?cid=ecf05e47vqvc3eck4dfhkrxakqq768gjgalhn8u8ehyxgqmg&rid=giphy.gif&ct=g)
### ¡Lo logramos!
--
#### `r fa("github")` Para ver el archivo .Rmd de nuestro `flexdashboard`, haz click [aquí](https://github.com/shaziaruybal/dashboard-mundialFIFA/blob/main/dashboard.rmd).
#### `r fa("download")` Descarga nuestro dashboard en .html para abrirlo en tu navegador [aquí](https://github.com/shaziaruybal/dashboard-mundialFIFA/blob/main/dashboard.html)
---
# `r fa("lightbulb")` Más recursos y ejemplos
#### [Más información sobre flexdashboard](https://rstudio.github.io/flexdashboard/articles/flexdashboard.html)
#### [Más información sobre los temas de flexdashboard](https://rstudio.github.io/flexdashboard/articles/theme.html#bootstrap-and-bslib-1)
#### [Aquí puedes encontrar los temas de Bootswatch](https://bootswatch.com)
#### [Información acerca de incluir Shiny en tu flexdashboard](https://pkgs.rstudio.com/flexdashboard/articles/shiny.html)
#### [Ejemplos de otros flexdashboards](https://pkgs.rstudio.com/flexdashboard/articles/examples.html)
---
class: inverse, center, middle
# `r fa("arrow-up-right-from-square")` Casos de uso: Demo y ejemplos de dashboards que yo he creado
---
name: contact
class: inverse
.pull-left[
.center[
### Dra Shazia Ruybal-Pesántez
<img style="border-radius: 50%;" src="img/shazia.png" width="250px"/>
#### ¡Estoy a las órdenes!
[`r fa(name = "envelope")` sruybal@imperial.ac.uk](mailto:sruybal@imperial.ac.uk)
[`r fa(name = "twitter")` @DrShaziaRuybal](https://twitter.com/DrShaziaRuybal)
]]
.pull-right[
### Materiales de este taller:
### [`r fa("github")` Repo](https://github.com/shaziaruybal/dashboard-mundialFIFA)
### [`r fa("image")` Diapositivas](https://shaziaruybal.github.io/dashboard-mundialFIFA)
### [`r fa("youtube")` Grabación (próximamente)]()
.footnote[
_Estas diapositivas fueron creadas utilizando los paquetes de R:
[xaringan](https://github.com/yihui/xaringan),
[xaringanthemer](https://github.com/gadenbuie/xaringanthemer),
[xaringanExtra](https://github.com/gadenbuie/xaringanExtra)_
]
]
---
class: inverse, middle, center
# ¡Muchas gracias!
--
# `r fa("circle-question")` ¿Preguntas?
---
class: left
# `r fa("list-check")` Actividad (opcional)
--
#### `r fa("square-check")` Si no lo has hecho todavía, intenta recrear el dashboard que vimos juntos en el taller
--
#### `r fa("square-check")` Intenta crear nuevas visualizaciones o modifica el tema de tu dashboard
--
#### `r fa("square-check")` Explora otros aspectos de los datos de los mundiales y visualizalos en tu dashboard
--
#### `r fa("square-check")` Comparte tu dashboard con el resto
--
.footnote[
Si quieres empezar desde el .rmd que creamos juntos, lo puedes encontrar [aquí `r fa("arrow-up-right-from-square")`](https://shaziaruybal.github.io/dashboard-mundialFIFA/dashboard.rmd)
]