-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlab-05.Rmd
49 lines (33 loc) · 821 Bytes
/
lab-05.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
---
title: "Lab 05 - La Quinta is Spanish for next to Denny's, Pt. 2"
author: "Insert your name here"
date: "Insert date here"
output: github_document
---
### Load packages and data
```{r load-packages, message = FALSE}
library(tidyverse)
library(dsbox)
```
```{r load-data, message = FALSE}
states <- read_csv("data/states.csv")
```
### Exercise 1
Remove this text, and add your answer for Exercise 1 here.
Add code chunks as needed.
Don't forget to label your code chunk.
Do not use spaces in code chunk labels.
### Exercise 2
Remove this text, and add your answer for Exercise 1 here.
Add code chunks as needed.
Don't forget to label your code chunk.
Do not use spaces in code chunk labels.
### Exercise 3
...
### Exercise 4
...
### Exercise 5
...
### Exercise 6
...
Add exercise headings as needed.