-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.rmd
55 lines (45 loc) · 1.06 KB
/
index.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
---
title: "Data Science Recipes"
subtitle: "Examples in Binary Classification"
author: "Mark Newman"
lof: true
lot: true
paged-footnotes: true
links-to-footnotes: true
toc-title: Table of Contents
output:
pagedown::html_paged:
toc: true
number_sections: yes
pandoc_args: --mathjax
self_contained: yes
editor_options:
chunk_output_type: console
bibliography: [_references.bib, _packages.bib, _datasets.bib]
link-citations: yes
csl: https://raw.githubusercontent.com/citation-style-language/styles/master/ieee-with-url.csl
url: 'https\://github.com/markanewman/DataScienceRecipes'
github-repo: markanewman/DataScienceRecipes
---
```{r echo = F, message = F}
here::i_am('index.rmd')
```
```{r child = 'book/100 introduction.rmd'}
```
```{r child = 'book/200 understanding.rmd'}
```
```{r child = 'book/300 figures.rmd'}
```
```{r child = 'book/400 tables.rmd'}
```
```{r child = 'book/500 modeling.rmd'}
```
```{r child = 'book/600 ml.rmd'}
```
```{r child = 'book/700 examples.rmd'}
```
# References {-}
---
nocite: |
@github, @rlanguage, @rstudio
---