-
Notifications
You must be signed in to change notification settings - Fork 539
Expand file tree
/
Copy path94-appendixD.qmd
More file actions
102 lines (61 loc) · 2.18 KB
/
Copy path94-appendixD.qmd
File metadata and controls
102 lines (61 loc) · 2.18 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
```{r setup-init, include=FALSE}
library(knitr)
source("scripts/image_functions.R")
```
# Learning Check Solutions {#sec-appendixD}
```{r setup_lc_solutions, include=FALSE, purl=FALSE}
opts_chunk$set(tidy = FALSE, out.width = "\\textwidth")
# This bit of code is a bug fix on asis blocks, which we use to show/not show LC solutions, which are written like markdown text. In theory, it shouldn't be necessary for knitr versions <=1.11.6, but I've found I still need to for everything to knit properly in asis blocks. More info here:
# https://stackoverflow.com/questions/32944715/conditionally-display-block-of-markdown-text-using-knitr
knit_engines$set(asis = function(options) {
if (options$echo && options$eval) knit_child(text = options$code)
})
```
If you detect any errors or have suggestions regarding these solutions, please [file an issue at the ModernDive GitHub repository](https://github.com/moderndive/ModernDive_book/issues) or, ideally, create a Pull Request on GitHub on the same repository making the suggested changes yourself (into the `v2` branch) for us to review. Thanks!
## Chapter 1 Solutions
```{r appendixD-1, child = "lc-answers/01_lc-answers.qmd"}
```
***
## Chapter 2 Solutions
```{r appendixD-alt, child = "lc-answers/02_lc-answers.qmd"}
```
***
## Chapter 3 Solutions
```{r appendixD-alt2, child = "lc-answers/03_lc-answers.qmd"}
```
***
## Chapter 4 Solutions
```{r appendixD-v4, child = "lc-answers/04_lc-answers.qmd"}
```
***
## Chapter 5 Solutions
```{r appendixD-v5, child = "lc-answers/05_lc-answers.qmd"}
```
***
## Chapter 6 Solutions
```{r appendixD-v6, child = "lc-answers/06_lc-answers.qmd"}
```
***
## Chapter 7 Solutions
```{r appendixD-v7, child = "lc-answers/07_lc-answers.qmd"}
```
***
## Chapter 8 Solutions
```{r appendixD-v8, child = "lc-answers/08_lc-answers.qmd"}
```
***
## Chapter 9 Solutions
```{r appendixD-v9, child = "lc-answers/09_lc-answers.qmd"}
```
***
## Chapter 10 Solutions
```{r appendixD-v10, child = "lc-answers/10_lc-answers.qmd"}
```
***
## Chapter 11 Solutions
```{r appendixD-v11, child = "lc-answers/11_lc-answers.qmd"}
```
***
## Appendix A1 Solutions
```{r appendixD-v12, child = "lc-answers/A1_lc-answers.qmd"}
```