generated from PovertyAction/ipa-python-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_quarto.yml
More file actions
76 lines (76 loc) · 2.04 KB
/
_quarto.yml
File metadata and controls
76 lines (76 loc) · 2.04 KB
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
project:
type: website
output-dir: _site
website:
title: "Programming with Python"
navbar:
left:
- href: index.qmd
text: Home
- text: Episodes
menu:
- href: 01-intro.qmd
text: "Python Fundamentals"
- href: 02-numpy.qmd
text: "Analyzing Patient Data"
- href: 03-matplotlib.qmd
text: "Visualizing Tabular Data"
- href: 04-lists.qmd
text: "Storing Multiple Values in Lists"
- href: 05-loop.qmd
text: "Repeating Actions with Loops"
- href: 06-files.qmd
text: "Analyzing Data from Multiple Files"
- href: 07-cond.qmd
text: "Making Choices"
- href: 08-func.qmd
text: "Creating Functions"
- href: 09-errors.qmd
text: "Errors and Exceptions"
- href: 10-defensive.qmd
text: "Defensive Programming"
- href: 11-debugging.qmd
text: "Debugging"
- href: 12-cmdline.qmd
text: "Command-Line Programs"
right:
- icon: github
href: https://github.com/PovertyAction/research-data-science-training
sidebar:
style: docked
search: true
contents:
- section: "Core Concepts"
contents:
- 01-intro.qmd
- 02-numpy.qmd
- 03-matplotlib.qmd
- 04-lists.qmd
- 05-loop.qmd
- 06-files.qmd
- section: "Control Flow & Functions"
contents:
- 07-cond.qmd
- 08-func.qmd
- section: "Best Practices"
contents:
- 09-errors.qmd
- 10-defensive.qmd
- 11-debugging.qmd
- 12-cmdline.qmd
- section: "Resources"
contents:
- href: learners/setup.md
text: Setup Instructions
- href: learners/reference.md
text: Reference
format:
html:
theme: cosmo
toc: true
toc-depth: 3
code-copy: true
code-overflow: wrap
highlight-style: github
execute:
freeze: auto