-
Notifications
You must be signed in to change notification settings - Fork 2
/
_quarto.yml
61 lines (54 loc) · 1.26 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
project:
type: book
output-dir: _book
preview:
port: 5896
browser: true
render:
- "*.qmd"
resources:
- "data/"
- "images/"
- "figs/"
book:
title: "Programming for Analytics in R"
reader-mode: true
author: "John Paul Helveston"
date: "12/19/2022"
page-footer:
left: |
Programming for Analytics in R was written by John Paul Helveston
right: |
This book was built with <a href="https://quarto.org/">Quarto</a>.
cover-image: cover.png
favicon: cover.png
site-url: https://p4a.jhelvy.com/
repo-url: https://github.com/jhelvy/p4a/
repo-branch: main
repo-actions: [edit, issue]
sidebar:
search: true
style: docked
chapters:
- index.qmd
- intro.qmd
- part: programming.qmd
chapters:
- getting-started.qmd
- operators-data-types.qmd
- functions-packages.qmd
- creating-functions.qmd
- conditionals.qmd
- testing-debugging.qmd
- iteration.qmd
- vectors.qmd
- strings.qmd
- part: data-analysis.qmd
chapters:
- data-frames.qmd
- data-wrangling.qmd
- data-visualization.qmd
- part: extensions.qmd
chapters:
- monte-carlo-methods.qmd
- python-in-r.qmd