-
Notifications
You must be signed in to change notification settings - Fork 0
/
exercise_pdf.Rmd
49 lines (32 loc) · 1.09 KB
/
exercise_pdf.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: "PDF version of exercises"
output:
html_document:
toc: false
---
```{r, echo=FALSE, purl = FALSE}
library(knitr)
library(stringr)
knitr::opts_chunk$set(message=FALSE, warning=FALSE, eval=TRUE, echo=FALSE)
suppressPackageStartupMessages(library(dplyr))
suppressPackageStartupMessages(library(stringr))
source('reveal.R')
```
Click on the links below to download pdf versions of the exercises.
\
```{r, reveal, echo=FALSE, eval = isFALSE(show_exercise)}
cat("Exercises will be released as the course progresses")
```
### Day 1
\
- [Graphical data exploration exercise](./exercises/graphical_data_exploration_exercise.pdf)
### Day 2
\
- [Linear model with single continuous explanatory variable exercise](./exercises/linear_model_1_exercise.pdf)
### Day 3
\
- [Linear model with single categorical explanatory variable exercise](./exercises/linear_model_2_exercise.pdf)
- [Linear model with categorical and continuous explanatory variables](./exercises/linear_model_3_exercise.pdf)
### Day 4
\
- [Linear model selection exercise](./exercises/linear_model_4_exercise.pdf)