forked from rafalab/dsbook-part-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_quarto.yml
112 lines (98 loc) · 2.65 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
project:
type: book
output-dir: docs
execute:
cache: true
book:
title: Introduction to Data Science
subtitle: Data Wrangling and Visualization with R
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>.
cover-image: cover.png
favicon: cover.png
site-url: http://rafalab.dfci.harvard.edu/dsbook-part-1
repo-url: https://github.com/rafalab/dsbook-part-1
repo-branch: main
repo-actions: [source, issue]
sidebar:
collapse-level: 1
chapters:
- index.qmd
- intro.qmd
- part: R/intro-to-R.qmd
chapters:
- R/getting-started.qmd
- R/R-basics.qmd
- R/programming-basics.qmd
- R/tidyverse.qmd
- R/data-table.qmd
- R/importing-data.qmd
- part: dataviz/intro-dataviz.qmd
chapters:
- dataviz/distributions.qmd
- dataviz/ggplot2.qmd
- dataviz/dataviz-principles.qmd
- dataviz/dataviz-in-practice.qmd
- part: wrangling/intro-to-wrangling.qmd
chapters:
- wrangling/reshaping-data.qmd
- wrangling/joining-tables.qmd
- wrangling/dates-and-times.qmd
- wrangling/locales.qmd
- wrangling/web-scraping.qmd
- wrangling/string-processing.qmd
- wrangling/text-analysis.qmd
- part: productivity/intro-productivity.qmd
chapters:
- productivity/unix.qmd
- productivity/git.qmd
- productivity/reproducible-projects.qmd
# - part: productivity/installations.qmd
# chapters:
# - productivity/installing-r-and-rstudio.qmd
# - productivity/installing-git.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