forked from r4bds/r4bds.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecap_lab04.qmd
425 lines (312 loc) · 9.55 KB
/
recap_lab04.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
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
---
title: "Recap Lab 4"
author: "Leon Eyrich Jessen"
format:
revealjs:
embed-resources: true
theme: moon
slide-number: c/t
width: 1600
height: 900
mainfont: avenir
logo: images/r4bds_logo_small.png
footer: "R for Bio Data Science"
---
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
# A Few Meta Points...
```{r}
#| echo: false
#| eval: true
#| message: false
library("tidyverse")
SPE_ENV <- read_tsv(file = "data/SPE_ENV.tsv")
targets <- c("Methanobacteria", "Clostridia", "Actinobacteria",
"Sphingobacteria", "Anaerolineae")
SPE_ENV_targets <- filter(SPE_ENV, Taxa %in% targets)
```
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Paths
:::: {.columns}
::: {.column width="50%"}
![](images/paths_19.png)
:::
::: {.column width="50%"}
![](images/paths_20.png)
:::
::::
- The `.Rproj`-file defines your project root, i.e. everything is relative to where this file is
- In your `.Qmd`-file you need to think about where files you need are
- To load something from `data`, you need to specify `data/my_data.csv`
- To load from `_raw` in `data`, you specify `data/_raw/my_raw_data.xlsx`
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Qmd
- Load libraries *before* calling needed functions
- Do a `Run All` check (Menu above Quarto doc $\rightarrow$ `Run` $\rightarrow$ `Run All`)
- When getting errors, make sure *read* the error message
![](images/paths_21.png){fig-align="center"}
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Group work
:::: {.columns}
::: {.column width="50%"}
- Each student *must* have a and work in a project on the RStudio Cloud Server
- Each student *must* to actively write code (no one has ever gotten good at football by watching others play $\rightarrow$ Learning by actively doing)
- Make sure to talk together in your groups, you *will* learn something by explaining
- Group work **is** a Learning Objective element in this course $\rightarrow$ Outlook to collaboratice bio data science!
:::
::: {.column width="50%"}
![](images/group_work_meme.png){fig-align="center"}
:::
::::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
# Recap
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Task 1 - Recreate the following plot
:::: {.columns}
::: {.column width="50%"}
```{r}
#| echo: true
#| eval: true
pl <- ggplot(data = SPE_ENV,
mapping = aes(x = OTU_Count,
y = Taxa,
fill = site)) +
geom_boxplot()
```
:::
::: {.column width="50%"}
```{r}
#| echo: false
#| eval: true
pl
```
:::
::::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Task 2 - Recreate the following plot
:::: {.columns}
::: {.column width="50%"}
```{r}
#| echo: true
#| eval: true
pl <- ggplot(data = SPE_ENV,
mapping = aes(x = site,
y = Temp)) +
geom_boxplot()
```
:::
::: {.column width="50%"}
```{r}
#| echo: false
#| eval: true
pl
```
:::
::::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Task 3 - Recreate the following plot
:::: {.columns}
::: {.column width="50%"}
```{r}
#| echo: true
#| eval: true
pl <- ggplot(data = SPE_ENV,
mapping = aes(x = Temp,
y = pH,
colour = site)) +
geom_point()
```
:::
::: {.column width="50%"}
```{r}
#| echo: false
#| eval: true
pl
```
:::
::::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Task 4 - Recreate the following plot
:::: {.columns}
::: {.column width="50%"}
```{r}
#| echo: true
#| eval: true
pl <- ggplot(data = SPE_ENV,
mapping = aes(x = Temp,
y = pH,
colour = site,
label = Samples)) +
geom_label(size = 3)
```
:::
::: {.column width="50%"}
```{r}
#| echo: false
#| eval: true
pl
```
:::
::::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Task 5 - Recreate the following plot
:::: {.columns}
::: {.column width="50%"}
```{r}
#| echo: true
#| eval: true
pl <- ggplot(data = SPE_ENV,
mapping = aes(x = NH4,
fill = site)) +
geom_density()
```
:::
::: {.column width="50%"}
```{r}
#| echo: false
#| eval: true
pl
```
:::
::::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Task 5 - Recreate the following plot - OR
:::: {.columns}
::: {.column width="50%"}
```{r}
#| echo: true
#| eval: true
pl <- pl +
scale_x_log10()
```
*Note this syntax and think about what it means*
:::
::: {.column width="50%"}
```{r}
#| echo: false
#| eval: true
pl
```
:::
::::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Task 6 - Recreate the following plot
:::: {.columns}
::: {.column width="50%"}
```{r}
#| echo: true
#| eval: true
pl <- ggplot(data = SPE_ENV,
mapping = aes(x = CODt,
y = CODs,
colour = site)) +
geom_point() +
geom_smooth(method = "lm")
```
:::
::: {.column width="50%"}
```{r}
#| echo: false
#| eval: true
pl
```
:::
::::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Task 7 - Recreate the following plot
:::: {.columns}
::: {.column width="50%"}
```{r}
#| echo: true
#| eval: true
pl <- ggplot(data = SPE_ENV,
mapping = aes(x = Taxa,
y = Samples,
fill = OTU_Count)) +
geom_tile() +
scale_fill_gradient2(midpoint = 10000,
low = "blue",
mid = "white",
high = "red") +
theme_classic(base_size = 8) +
theme(legend.position = "bottom",
axis.text.x = element_text(angle = 45,
hjust = 1))
```
:::
::: {.column width="50%"}
```{r}
#| echo: false
#| eval: true
#| fig-width: 7
#| fig-height: 7
#| fig-align: center
pl
```
:::
::::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Task 8 - Recreate the following plot
:::: {.columns}
::: {.column width="50%"}
```{r}
#| echo: true
#| eval: true
library("ggridges")
pl <- ggplot(data = SPE_ENV_targets,
mapping = aes(x = OTU_Count,
y = Taxa,
fill = Taxa)) +
geom_density_ridges(alpha = 0.5) +
scale_fill_viridis_d() +
labs(x = "OTU Count",
y = "Taxa Identified",
title = "OTU Count Distribution for 5 Taxa Stratified on Site",
caption = "Data from doi.org/10.1111/1751-7915.12334") +
theme_minimal(base_family = "Avenir",
base_size = 12) +
theme(legend.position = "bottom") +
facet_wrap(vars(site),
ncol = 2)
```
:::
::: {.column width="50%"}
```{r}
#| echo: false
#| eval: true
pl
```
:::
::::
<!--# ---------------------------------------------------------------------- -->
<!--# SLIDE ---------------------------------------------------------------- -->
<!--# ---------------------------------------------------------------------- -->
## Task 9 - <span style="color: red;">GROUP ASSIGNMENT</span>
Let us take a look at this years submissions...