forked from cjvanlissa/TCSM
-
Notifications
You must be signed in to change notification settings - Fork 1
/
week1.Rmd
29 lines (21 loc) · 1.04 KB
/
week1.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
# Introduction to R
```{r week1_global_options, include = FALSE}
source("code/chapter_setup.R")
partDir <- paste0(partDir0, "week1/")
```
This week is all about getting up-and-running with R and RStudio.
**Homework before the lecture**
1. Complete the preparatory material:
a. Read over the [Course Information](index.html) chapter
a. Work through the [Software Setup](software-setup.html) chapter
1. Watch the [Lecture Recording](lecture.html) for this week.
**Homework before the practical**
Complete the [At-Home Exercises](at-home-exercises.html).
**Practical content**
During the practical you will work on the [In-Class Exercises](in-class-exercises.html).
```{r, echo = FALSE, message = FALSE, warning = FALSE, results = "asis"}
knit_child(paste0(partDir, "lecture.Rmd"), quiet = TRUE) %>% cat(sep = "\n")
knit_child(paste0(partDir, "reading.Rmd"), quiet = TRUE) %>% cat(sep = "\n")
knit_child(paste0(partDir, "home.Rmd"), quiet = TRUE) %>% cat(sep = "\n")
knit_child(paste0(partDir, "class.Rmd"), quiet = TRUE) %>% cat(sep = "\n")
```