forked from cjvanlissa/TCSM
-
Notifications
You must be signed in to change notification settings - Fork 1
/
week7.Rmd
28 lines (19 loc) · 971 Bytes
/
week7.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
# Multiple Group Models
```{r week7_global_options, include = FALSE}
source("code/chapter_setup.R")
partDir <- paste0(partDir0, "week7/")
```
This week, you will cover multiple group modeling and measurement invariance
testing in the SEM/CFA context.
**Homework before the lecture**
Watch the [Lecture Recording](lecture-6.html) for this week.
**Homework before the practical**
Complete the [At-Home Exercises](at-home-exercises-6.html).
**Practical content**
During the practical you will work on the [In-Class Exercises](in-class-exercises-6.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")
```