-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab-4-the-office.qmd
100 lines (61 loc) · 978 Bytes
/
lab-4-the-office.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
---
title: "Lab 4 - The Office, another look"
subtitle: "STA 210 - Spring 2022"
author: "Team Name: Member 1, Member 2, Member 3, Member 4"
date: "Add the date here"
format: pdf
editor: visual
---
## Setup
Load packages and data:
```{r}
#| label: load-pkg-data
#| message: false
library(tidyverse)
library(tidymodels)
library(schrute)
library(lubridate)
library(knitr)
```
Fix the `air_date` variable type.
```{r}
#| label: data-fix
theoffice <- theoffice %>%
mutate(air_date = ymd(as.character(air_date)))
```
\pagebreak
## Exercises
### Exercise 1
```{r}
#| label: label-me-something-meaningful
# add code here
```
### Exercise 2
```{r}
#| label: label-me-something-else-meaningful
# add code here
```
### Exercise 3
...
### Exercise 4
...
### Exercise 5
...
### Exercise 6
...
### Exercise 7
...
### Exercise 8
...
### Exercise 9
...
### Exercise 10
...
### Exercise 11
...
### Exercise 12
...
### Exercise 13
...
### Exercise 14
...