-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
390 lines (264 loc) · 6.21 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
---
title: "Plantilla `xaringan` para rOpenSpain"
subtitle: "Para su uso en presentaciones"
author:
- "Diego Hernangómez"
date: '`r Sys.Date()`'
output:
xaringan::moon_reader:
css: [default, rOpenSpain.css]
self_contained: true
nature:
beforeInit: "rOpenSpain.js"
slideNumberFormat: "%current%"
highlightStyle: github
highlightLines: true
ratio: 16:9
countIncrementalSlides: true
---
```{r setup, include=FALSE}
options(htmltools.dir.version = 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
)
```
name: instalacion
## Instalación
Para usar esta plantilla, es necesario seguir los siguientes pasos:
1. Copiar los archivos
`rOpenSpain.css` ([link](https://github.com/rOpenSpain/rosxaringan/blob/master/rOpenSpain.css)) y
`rOpenSpain.js`([link](https://github.com/rOpenSpain/rosxaringan/blob/master/rOpenSpain.js))
en la carpeta de trabajo.
2. Configurar la presentación `xaringan` con los siguientes parámetros:
```yaml
output:
xaringan::moon_reader:
css: [default, rOpenSpain.css]
nature:
beforeInit: "rOpenSpain.js"
...
```
---
layout: false
class: inverse center middle
# xaringan
### /ʃaː.'riŋ.ɡan/
---
## Tipografía
Los textos pueden estar en **negrita**, _cursiva_, ~~tachado~~, or `código inline`.
[Link a otra slide](#instalacion).
### Lorem Ipsum
Dolor imperdiet nostra sapien scelerisque praesent curae metus facilisis dignissim tortor.
Lacinia neque mollis nascetur neque urna velit bibendum.
Himenaeos suspendisse leo varius mus risus sagittis aliquet venenatis duis nec.
- Dolor cubilia nostra nunc sodales
- Consectetur aliquet mauris blandit
- Ipsum dis nec porttitor urna sed
---
name: colors
## Colores
.left-column[
Texto
[Link](#3)
**Negrita**
_Cursiva_
`Inline`
]
.right-column[
Lorem ipsum dolor sit amet, [consectetur adipiscing elit (link)](#3),
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Erat nam at lectus urna.
Pellentesque elit ullamcorper **dignissim cras tincidunt (negrita)** lobortis
feugiat.
_Eros donec ac odio tempor (cursiva)_ orci dapibus ultrices.
Id porta nibh venenatis cras sed felis eget velit aliquet.
Aliquam id diam maecenas ultricies mi.
Enim sit amet
`color("inline")`
venenatis urna cursus eget nunc scelerisque viverra.
]
---
# Aspecto importante o Slides Inversas `#`
## Encabezados de slides `##`
### Subapartados de slides `###`
#### Texto destacado en negrita `####`
Esto es un párrafo normal. Usa únicamente encabezados del 1 al 4.
##### Posible, pero no se recomienda `#####`
###### No uses h6 `######`
---
# Encabezados: Columna izquierda
.left-column[
## Primero
## Segundo
## Tercero
]
.right-column[
Dolor quis aptent mus a dictum ultricies egestas.
Amet egestas neque tempor fermentum proin massa!
Dolor elementum fermentum pharetra lectus arcu pulvinar.
]
---
layout: false
class: inverse center middle
# Cambio de sección
--
```
class: inverse center middle
```
---
layout: true
## Bloques
---
### Citas
> Esto es una cita.
>
> Cuando algo es lo suficientemente importante, lo haces incluso si las probabilidades de que salga bien no están a tu favor.
>
> _Elon Musk_
---
### Bloques de código
#### R
```{r eval=FALSE}
ggplot(gapminder) +
aes(x = gdpPercap, y = lifeExp, size = pop, color = country) +
geom_point() +
facet_wrap(~year)
```
#### JavaScript
```js
var fun = function lang(l) {
dateformat.i18n = require('./lang/' + l)
return true;
}
```
---
### Mas código R
```{r eval=FALSE}
dplyr::starwars %>% dplyr::slice_sample(n = 4)
```
---
```{r message=TRUE}
message("Soy un mensaje")
```
--
```{r warning=TRUE}
warning("Soy un aviso...")
```
--
```{r error=TRUE}
stop("Tenemos un problema")
```
---
layout: true
## Tablas
---
exclude: `r if (requireNamespace("tibble", quietly=TRUE)) "false" else "true"`
```{r eval=requireNamespace("tibble", quietly=TRUE)}
tibble::as_tibble(mtcars)
```
---
```{r}
knitr::kable(head(mtcars), format = 'html')
```
---
exclude: `r if (requireNamespace("DT", quietly=TRUE)) "false" else "true"`
```{r eval=requireNamespace("DT", quietly=TRUE)}
DT::datatable(head(mtcars), fillContainer = FALSE, options = list(pageLength = 4))
```
---
layout: true
## Listas
---
.pull-left[
#### Una lista simple:
* Item foo
* Item bar
* Item baz
* Item zip
]
.pull-right[
#### Y una numerada:
1. Item one
1. Item two
1. Item three
1. Item four
]
---
### Lista anidada:
- nivel 1 item
- nivel 2 item
- nivel 2 item
- nivel 3 item
- nivel 3 item
- nivel 1 item
- nivel 2 item
- nivel 2 item
- nivel 2 item
- nivel 1 item
- nivel 2 item
- nivel 2 item
- nivel 1 item
---
### Mas anidados
- nivel 1 item (ul)
1. nivel 2 item (ol)
1. nivel 2 item (ol)
- nivel 3 item (ul)
- nivel 3 item (ul)
- nivel 1 item (ul)
1. nivel 2 item (ol)
1. nivel 2 item (ol)
- nivel 3 item (ul)
- nivel 3 item (ul)
1. nivel 4 item (ol)
1. nivel 4 item (ol)
- nivel 3 item (ul)
- nivel 3 item (ul)
- nivel 1 item (ul)
---
layout: true
## Gráficos
---
```{r plot-example, eval=requireNamespace("ggplot2", quietly=TRUE)}
library(ggplot2)
(g <- ggplot(mpg) + aes(hwy, cty, color = class) + geom_point())
```
---
```{r plot-example-other, eval=requireNamespace("ggplot2", quietly=TRUE)}
library(mapSpain)
country <- esp_get_country()
ggplot(country) +
geom_sf(fill = "cornsilk", color = "#887e6a")
```
---
### HTML Widgets
```{r out.width='100%', eval=require('leaflet'), out.height="40%"}
library(leaflet)
leaflet() %>%
setView(lat = 40.4166, lng = -3.7038400, zoom = 7) %>%
addProviderEspTiles(provider = "IDErioja")
```
---
layout: false
## Imagen cuadrada
<center><img src="https://octodex.github.com/images/labtocat.png" height="400px" /></center>
.footnote[Soy una nota al pie]
---
## Dos imágenes
.pull-left[
![](https://octodex.github.com/images/motherhubbertocat.png)
]
.pull-right[
![](https://octodex.github.com/images/dinotocat.png)
]
---
class: center, middle, end-slide
# Gracias
Presentación creada con [**xaringan**](https://github.com/yihui/xaringan)
GitHub repo: https://github.com/rOpenSpain/rosxaringan