forked from StatBiomed/BMDS-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01-introduction.Rmd
58 lines (35 loc) · 1.32 KB
/
01-introduction.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
(ref:introsepart) Data Science Foundations
```{r echo=FALSE, results="asis", purl=FALSE}
cat("# (PART) Data Science Foundations {-} ")
```
```{r, include=FALSE}
knitr::opts_chunk$set(
collapse = TRUE, comment = "#>"
)
```
```{r child="notebooks/chapter1-R/01-introR.Rmd", echo=TRUE}
```
# Introduction to Linear Regression {#introLinearReg}
Acknowledgements: this chapter is adapted and updated from the materials originally produced by STAT1005 teaching team, especially Prof. Jeff Yao.
```{r child="notebooks/chapter2-LR/02-linearReg-01.Rmd", echo=TRUE}
```
```{r child="notebooks/chapter2-LR/02-linearReg-02.Rmd", echo=TRUE}
```
```{r child="notebooks/chapter2-LR/02-linearReg-03.Rmd", echo=TRUE}
```
```{r child="notebooks/chapter2-LR/02-linearReg-04.Rmd", echo=TRUE}
```
```{r child="notebooks/chapter2-LR/02-linearReg-05.Rmd", echo=TRUE}
```
# Introduction to Classification {#introClassifier}
```{r child="notebooks/chapter3-CL/03-classifier-01.Rmd", echo=TRUE}
```
```{r child="notebooks/chapter3-CL/03-classifier-02.Rmd", echo=TRUE}
```
```{r child="notebooks/chapter3-CL/03-classifier-03.Rmd", echo=TRUE}
```
# Introduction to Hypothesis testing {#introHypoTest}
```{r child="notebooks/chapter4-HT/04-hypothesis-test-01.Rmd", echo=TRUE}
```
```{r child="notebooks/chapter4-HT/04-hypothesis-test-02.Rmd", echo=TRUE}
```