forked from cjvanlissa/TCSM
-
Notifications
You must be signed in to change notification settings - Fork 1
/
week2.Rmd
29 lines (20 loc) · 1018 Bytes
/
week2.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
# Statistical Modeling & Path Analysis
```{r week2_global_options, include = FALSE}
source("code/chapter_setup.R")
partDir <- paste0(partDir0, "week2/")
```
This week, we will cover statistical modeling and path analysis.
**Homework before the lecture**
1. Watch the [Lecture Recording](lecture-1.html) for this week.
1. Complete the [Reading](reading-1.html) for this week, and answer the associated
reading questions.
**Homework before the practical**
Complete the [At-Home Exercises](at-home-exercises-1.html).
**Practical content**
During the practical you will work on the [In-Class Exercises](in-class-exercises-1.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")
```