-
Notifications
You must be signed in to change notification settings - Fork 28
/
_quarto.yml
121 lines (108 loc) · 3.11 KB
/
_quarto.yml
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
project:
type: book
output-dir: docs
execute:
cache: true
book:
title: Introduction to Data Science
subtitle: Statistics and Prediction Algorithms Through Case Studies
reader-mode: true
page-footer:
left: |
Introduction to Data Science was written by Rafael A. Irizarry
right: |
This book was built with <a href="https://quarto.org/">Quarto</a>.
site-url: http://rafalab.dfci.harvard.edu/dsbook-part-2
repo-url: https://github.com/rafalab/dsbook-part-2
repo-branch: main
repo-actions: [source, issue]
sidebar:
collapse-level: 1
chapters:
- index.qmd
- intro.qmd
- part: summaries/intro-summaries.qmd
chapters:
- summaries/distributions.qmd
- summaries/robust-summaries.qmd
- part: prob/intro-to-prob.qmd
chapters:
- prob/discrete-probability.qmd
- prob/continuous-probability.qmd
- prob/random-variables-sampling-models-clt.qmd
- part: inference/intro-inference.qmd
chapters:
- inference/parameters-estimates.qmd
- inference/clt.qmd
- inference/confidence-intervals.qmd
- inference/hypothesis-testing.qmd
- inference/bootstrap.qmd
- inference/models.qmd
- inference/bayes.qmd
- inference/hierarchical-models.qmd
- part: linear-models/intro-to-linear-models.qmd
chapters:
- linear-models/regression.qmd
- linear-models/multivariate-regression.qmd
- linear-models/measurement-error-models.qmd
- linear-models/treatment-effect-models.qmd
- linear-models/association-tests.qmd
- linear-models/association-not-causation.qmd
- part: highdim/intro-highdim.qmd
chapters:
- highdim/matrices-in-R.qmd
- highdim/linear-algebra.qmd
- highdim/dimension-reduction.qmd
- highdim/regularization.qmd
- highdim/matrix-factorization.qmd
- part: ml/intro-ml.qmd
chapters:
- ml/notation-and-terminology.qmd
- ml/evaluation-metrics.qmd
- ml/conditionals.qmd
- ml/smoothing.qmd
- ml/resampling-methods.qmd
- ml/algorithms.qmd
- ml/ml-in-practice.qmd
- ml/clustering.qmd
format:
html:
theme:
- cosmo
- r4ds.scss
code-link: true
author-meta: Rafael A. Irizarry
callout-appearance: simple
pdf:
documentclass: krantz
classoption: [krantz2,10pt,twoside,onecolumn,final,openright]
include-in-header: preamble.tex
header-includes: |
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{makeidx}
\usepackage{multicol}
keep-tex: true
knitr:
opts_chunk:
comment: "#>"
collapse: TRUE
cache: TRUE
width: 72
tidy.opts: list(width.cutoff=72, tidy=TRUE)
out.width: 70%
fig.align: 'center'
fig.width: 6
fig.height: 3.708 # width * 1 / phi
fig.show: hold
R.options:
digits: 3
width: 72
formatR.indent: 2
dplyr.summarise.inform: FALSE
dplyr.print_min: 5
dplyr.print_max: 5
ggrepel.max.overlaps: 100
editor: source