-
Notifications
You must be signed in to change notification settings - Fork 1
/
slides.qmd
336 lines (214 loc) · 5.06 KB
/
slides.qmd
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
---
title: R in 3 Months Info Session
format:
rfortherestofus-slides-revealjs:
menu: false
progress: false
slide-number: true
show-slide-number: print
center: true
incremental: true
auto-animate: true
df-print: paged
execute:
message: false
warning: false
cache: false
title-slide-attributes:
data-background-image: assets/rru-hex-bg-gradient-dark.svg
data-background-size: cover
preview:
port: 4200
browser: true
---
```{r}
library(tidyverse)
library(palmerpenguins)
library(gt)
library(tidycensus)
```
# Before We Start
Please take the survey at [https://rfor.us/familiaritysurvey](https://rfor.us/familiaritysurvey)
![](assets/familiarity-survey.gif)
# Logistics {.inverse}
---
- Recording, slides, and report will be shared by email
- David will talk about R in general
- Gracielle will talk about R in 3 Months
- If you have any questions, please put them in the chat (we'll stop if necessary)
- There will also be time for Q&A at the end
# Who Are We? {.inverse}
# What is R? {.inverse}
---
**What I tell people who just want the basics:**
- R is a high-powered Excel
. . .
**What I really want to say:**
- R is a tool that can completely revolutionize how you work with data
## Data Analysis in a Snap {.inverse}
---
```{r}
penguins |>
select(species:bill_length_mm)
```
---
```{r}
#| echo: true
#| eval: false
penguins |>
group_by(species) |>
summarize(avg_bill_length = mean(
bill_length_mm,
na.rm = TRUE
))
```
. . .
```{r}
penguins |>
group_by(species) |>
summarize(avg_bill_length = mean(
bill_length_mm,
na.rm = TRUE
))
```
---
```{r}
#| echo: true
#| eval: false
#| code-line-numbers: "2"
penguins |>
group_by(island) |>
summarize(avg_bill_length = mean(
bill_length_mm,
na.rm = TRUE
))
```
. . .
```{r}
penguins |>
group_by(island) |>
summarize(avg_bill_length = mean(
bill_length_mm,
na.rm = TRUE
))
```
## High-Quality Data Visualization {.inverse}
---
:::{.center-slide}
![](assets/qz-ggplot-article.png)
:::
---
:::{.center-slide}
![](assets/bbc-plots.png)
:::
---
:::{.center-slide}
![](assets/psc.png)
:::
# Packages {.inverse}
---
![](assets/tidyverse-website.png)
---
![](assets/gendercoder.png)
## R's Killer Feature: Quarto {.inverse}
---
![](assets/non-r-workflow.png)
---
![](assets/render-quarto.png)
## Familiarity Survey {.inverse}
## R is a Workflow Tool That Happens to Do Stats {.inverse}
---
![](assets/rachel-udow-linkedin.png)
## tidycensus {.inverse}
::: {.notes}
https://data.census.gov/table/ACSDT5YAIAN2021.B19013?q=B19013_001
:::
---
```{r}
#| echo: true
#| eval: false
get_acs(
geography = "state",
variables = "B19013_001",
year = 2021
)
```
. . .
```{r}
get_acs(
geography = "state",
variables = "B19013_001",
year = 2021
) |>
slice(1:5)
```
## The Best Reason to Learn R {.inverse}
---
![](assets/rstats-supportive-community.gif)
# How Does R in 3 Months Work? {.inverse}
---
- Course materials
- Live sessions
- Co-working sessions
- Project assignments and personalized feedback
- 1-on-1 meetings
- Discord and community
## Live Sessions
- When: Thursdays at 10 am PT
- Duration: 1 hour
- Goal: review, exercise, ask questions
## Co-Working Sessions
- When: Mondays at 10 am PT
- Duration: 1 hour
- Goal: exercise and socialize
## Project Assignments and Personalized Feedback
- Get personalized feedback when submitting assignments within the 3 months
- Assignments usually take a few minutes to complete early in the program, and longer towards the end
- It's a project-oriented program!
## What Feedback Looks Like
![](assets/feedback.png)
## Final Project
![](assets/final_project_example.jpg)
## 1-on-1 Meetings
- When: on demand
- Duration: 30 minutes
- Goal: chat, ask questions, debug together
## Discord and Community
We use a Discord server to learn together, share accomplishments, frustrations, and pet pictures!
# What Will You Have Access To? {.inverse}
## Lifetime Access
*Only happen during the 3 months, but are recorded and you'll have access to them forever.*
- Live sessions
- Feedback on project assignments
## Partial Access
*Full access during the 3 months, partial access after.*
- Discord and community
## Access Only During R in 3 Months
*Only happen during the 3 months and are not recorded.*
- Co-working sessions
- 1-on-1 meetings
# Learn More {.center-slide}
![](assets/rin3-page.png)
[https://rfortherestofus.com/3months](https://rfortherestofus.com/3months)
# Questions? {.inverse}
---
:::: {.columns}
::::
:::: {.columns}
::: {.column width="50%"}
**David**
[[email protected]](mailto:[email protected]){.small}
:::
::: {.column width="50%"}
![](https://rfortherestofus.com/images/headshots/dk-headshot-new.jpg){fig-align="center" height="175px"}
:::
::::
:::: {.columns}
::: {.column width="50%"}
**Gracielle**
[[email protected]](mailto:[email protected]){.small}
:::
::: {.column width="50%"}
![](https://rfortherestofus.com/images/headshots/gracielle-higino.png){fig-align="center" height="175px"}
:::
::::