-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtour-of-the-tidyverse.Rmd
169 lines (117 loc) · 4.92 KB
/
tour-of-the-tidyverse.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
---
title: "An Antarctic Tour of the Tidyverse"
subtitle: "R-Ladies Chicago"
author: "Silvia Canelón, PhD"
institute: "University of Pennsylvania, Philadelphia, PA, US"
date: "August 31, 2020"
output:
xaringan::moon_reader:
css: ["default", "rladies-spc.css", "rladies-fonts-spc.css"]
#css: ["default", "rladies", "rladies-fonts"]
lib_dir: libs
seal: false
nature:
highlightStyle: github
highlightLines: true
highlightLanguage: ["r", "css", "yaml"]
countIncrementalSlides: true
ratio: "16:9"
---
```{r setup, include=FALSE}
options(htmltools.dir.version = FALSE)
knitr::opts_chunk$set(collapse = TRUE,
fig.retina = 3,
warning = FALSE,
message = FALSE)
library(tidyverse)
library(palmerpenguins)
library(nord)
library(prismatic)
library(xaringanExtra)
xaringanExtra::use_xaringan_extra(include = c("panelset", "tile_view", "share_again"))
xaringanExtra::use_clipboard()
xaringanExtra::style_share_again(share_buttons = c("twitter", "linkedin", "pocket"))
xaringanExtra::embed_xaringan(
url = "https://spcanelon.github.io/2020-rladies-chi-tidyverse", ratio = "16:9")
```
class: title-slide, center, bottom
```{r title-slide, echo=FALSE, out.width=400}
knitr::include_graphics("images/lter_penguins.png")
```
# `r rmarkdown::metadata$title`
## `r rmarkdown::metadata$subtitle`
### `r rmarkdown::metadata$author`
### `r rmarkdown::metadata$date`
---
class: about-me, middle, center
## Silvia Canelón
### Postdoctoral Research Scientist
### University of Pennsylvania, Philadelphia, PA, USA
<img style="border-radius: 50%;" src="https://silvia.rbind.io/authors/silvia/avatar_hu5008cfaae4fe27558f3c3604a254cbf4_10721386_270x270_fill_lanczos_center_2.png" width="150px"/>
[`r icon::fa("link")` silvia.rbind.io](https://silvia.rbind.io)<br/>
[`r icon::fa("twitter")` @spcanelon](https://twitter.com/spcanelon)<br/>
[`r icon::fa("github")` @spcanelon](https://github.com/spcanelon)
.footnote[<span>Photo by <a href="https://unsplash.com/@lukehuff?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">lucas huffman</a> on <a href="https://unsplash.com/s/photos/antarctica?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a></span>]
---
class: left, middle
# Acknowledgments
### [palmerpenguins](https://allisonhorst.github.io/palmerpenguins/articles/intro.html) `r emo::ji("package")` developed by Drs. [Allison Horst](https://www.allisonhorst.com/), [Alison Hill](https://alison.rbind.io/), and [Kristen Gorman](https://www.uaf.edu/cfos/people/faculty/detail/kristen-gorman.php).
### Penguin artwork by Allison Horst ([@allison_horst](https://twitter.com/allison_horst))
### Slide inspiration from Alison Hill ([@apreshill](https://twitter.com/apreshill))'s recent education training materials "[Teaching in Production](https://rstudio-education.github.io/teaching-in-production/)"
### Slides made using Dr. Yihui Xie's [xaringan](https://github.com/yihui/xaringan) `r emo::ji("package")` and Garrick Aden-Buie's [xaringanExtra](https://github.com/gadenbuie/xaringanExtra) `r emo::ji("package")`, and adapted from the [R-Ladies `xaringan` theme designed by Alison Hill](https://alison.rbind.io/post/2017-12-18-r-ladies-presentation-ninja/)
### Photographs from various photographers on Unsplash, and noted on the relevant slide
---
class: left, top
background-image: url(images/logo.png)
background-position: 1050px 50px
background-size: 80px
# Meet our penguin friends!
<div class="flex" style="margin: 0 0em;">
<div class="column">
<h3> Chinstrap </h3>
<img src="images/penguin_chinstrap.jpg" style="width: 100%;">
</div>
<div class="column" style="margin: 0 1em;">
<h3> Gentoo </h3>
<img src="images/penguin_gentoo.jpg" style="">
</div>
<div class="column" style="margin: 0 0em;">
<h3> Adélie </h3>
<img src="images/penguin_adelie.jpg" style="">
</div>
</div>
.footnote[`r emo::ji("penguin")`<span>Photos by <a href="https://unsplash.com/@longmaspirit?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Long Ma</a> on <a href="https://unsplash.com/collections/12240655/palmerpenguins/d5aed8c855e26061e5e651d3f180b76d?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a></span>
]
---
class: right, top
background-image: url(images/pptx/tidyverse.png)
background-size: 1150px
## Collection of R packages, including <br/> these 8 core packages (and more!)
---
```{r 01-readr, child="01-readr.Rmd"}
```
---
```{r 02-tibble, child="02-tibble.Rmd"}
```
---
```{r 03-ggplot2, child="03-ggplot2.Rmd"}
```
---
```{r 04-dplyr, child="04-dplyr.Rmd"}
```
---
```{r 05-forcats, child="05-forcats.Rmd"}
```
---
```{r 06-stringr, child="06-stringr.Rmd"}
```
---
```{r 07-tidyr, child="07-tidyr.Rmd"}
```
---
```{r 08-purrr, child="08-purrr.Rmd"}
```
---
class: about-me, middle, center
# Thank you!
## Any questions?