-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurrr_class_15min_es.Rmd
203 lines (132 loc) · 4.01 KB
/
purrr_class_15min_es.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
---
title: "Manejo automatizado de archivos"
subtitle: "Mini-clase para la certificación de RStudio"
author: "Florencia D'Andrea"
institute: "🐦cantoflor_87"
output:
xaringan::moon_reader:
css: xaringan-themer.css
lib_dir: libs
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
```{r xaringan-themer, include=FALSE, warning=FALSE}
library(xaringanthemer)
style_mono_accent(
base_color = "#1037A0",
inverse_background_color = "#16a67a",
header_font_google = google_font("Josefin Sans"),
text_font_google = google_font("Montserrat", "300", "300i"),
code_font_google = google_font("Fira Mono")
)
```
```{r setup, include=FALSE}
options(htmltools.dir.version = FALSE,
fig.align='center')
library("showtext")
```
class: center, middle
# Iteración con el paquete purrr
### para el manejo automatizado de archivos
### 📄🐱
---
class: inverse, center, middle
### 1. Obtener un único dataframe de multiples archivos
### 2. Automatizar la creación de reportes
---
class: inverse, center, middle
### 👉<span style="color: #f2cc9d;">1. Obtener un único dataframe de multiples archivos</span>
### 2. Automatizar la creación de reportes
---
### Leer archivos usando `map_df()`
```{r one, echo = FALSE}
knitr::include_graphics("1_eng.png")
```
---
### Leer archivos usando `map_df()`
```{r two, echo = FALSE}
knitr::include_graphics("2_eng.png")
```
---
### Valor de retorno: dataframe
```{r three, echo = FALSE}
knitr::include_graphics("3_eng.png")
```
---
# Practiquemos 💪
### ¿Qué función usarías para obtener los siguientes valores de retorno?
1. `map()`
2. `map_df()`
3. `map_chr()`
```{r four, echo = FALSE}
knitr::include_graphics("4_eng.png")
```
---
class: inverse, center, middle
# Demo #1 💻
#### 1. Construí un vector con `nombres de archivos` sobre los cuales iterar
#### 2. Seleccioná una `función` para leer los archivos
#### 3. Chequea el número de `argumentos` que la función necesita
#### 4. Elegí entre `map()`/`map2()`/`pmap()`
#### 5. Elegi un sufijo para `map_*()` en relación al output deseado
Archivo `live_coding.R` en [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/flor14/purrr_class/master?urlpath=rstudio)
---
class: inverse, center, middle
### 1. Obtener un único dataframe de multiples archivos
### 2. Automatizar la creación de reportes
---
class: inverse, center, middle
### 1. Obtener un único dataframe de múltiples archivos
### 👉 <span style="color: #f2cc9d;">2. Automatizar la creación de reportes</span>
---
### Iterar usando una funcion por sus "efectos secundarios" (_side effects_)
```{r five, echo = FALSE}
knitr::include_graphics("5_eng.png")
```
---
### Función `purrr::walk()`
```{r six, echo = FALSE, out.width=800}
knitr::include_graphics("6_eng.png")
```
---
# Practiquemos 💪
### Cuál de estas funciones usarías con la familia de funciones walk()?
1. `purrr::safely()`
2. `~ggplot(., aes(mpg, wt)) + geom_point()`
3. `rmarkdown::render()`
4. `~list(name = .)`
¿Podés explicar la elección de usar `map()` o `walk()` para iterar con estas funciones?
---
### RMarkdown 🧶
```{r rmark, echo = FALSE, out.width=700}
knitr::include_graphics("rmd.png")
```
---
### Plantilla de RMarkdown
Incluí los parámetros a reemplazar en el código
```{r eight, echo = FALSE}
knitr::include_graphics("yaml.png")
```
---
### Automatización de la creación de reportes
```{r seven, echo = FALSE}
knitr::include_graphics("7_eng.png")
```
---
### Función `pwalk()` 🧶😺
```{r final, echo = FALSE}
knitr::include_graphics("final_scheme.png")
```
---
class: inverse, center, middle
# Demo #2 💻
¡Obtene tu propia serie de reportes!
Archivo `live_coding.R` en
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/flor14/purrr_class/master?urlpath=rstudio)
---
class: center, middle
# ¡Gracias!
### 😺🧶😺🧶😺🧶
Filminas creadas con el paquete de R [**xaringan**](https://github.com/yihui/xaringan).