-
Notifications
You must be signed in to change notification settings - Fork 0
/
markdown_mother.Rmd
66 lines (51 loc) · 1.4 KB
/
markdown_mother.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
title: "Applied Statistics Labs. Assembled!"
output:
html_document:
toc: true
toc_float: true
number_sections: true
pdf_document:
toc: true
toc_depth: 3
number_section: true
---
<!-- Chunk options: https://rmarkdown.rstudio.com/lesson-3.html#:~:text=include%20%3D%20FALSE%20prevents%20code%20and,useful%20way%20to%20embed%20figures. -->
```{r setup, include=FALSE}
path_images = paste(here::here("images"),"/", sep="")
knitr::opts_chunk$set(fig.path = path_images,
echo = TRUE,
dev = "png",
dpi = 300,
cache = TRUE,
warning = FALSE,
message = FALSE)
```
```{r child=here::here("markdowns","lab_1.rmd")}
```
```{r child=here::here("markdowns","lab_2.rmd")}
```
```{r child=here::here("markdowns","lab_3.rmd")}
```
```{r child=here::here("markdowns","lab_4.rmd")}
```
```{r child=here::here("markdowns","lab_5.rmd")}
```
```{r child=here::here("markdowns","lab_6.rmd")}
```
```{r child=here::here("markdowns","lab_7.rmd")}
```
```{r child=here::here("markdowns","lab_8.rmd")}
```
```{r child=here::here("markdowns","lab_9.rmd")}
```
```{r child=here::here("markdowns","lab_10.rmd")}
```
```{r child=here::here("markdowns","lab_11.rmd")}
```
```{r child=here::here("markdowns","lab_12.rmd")}
```
```{r child=here::here("markdowns","lab_13.rmd")}
```
```{r child=here::here("markdowns","lab_14.rmd")}
```