-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_quarto.yml
More file actions
183 lines (180 loc) · 8.29 KB
/
_quarto.yml
File metadata and controls
183 lines (180 loc) · 8.29 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
project:
type: website
output-dir: docs
render:
- "*.qmd"
- "*.ipynb"
- "!nbs/**"
- "!extra_files/**"
website:
navbar:
title: "EDS 217"
right:
- text: 🏠 home
href: index.qmd
- text: 📋 syllabus
href: https://docs.google.com/document/d/1yBKyJFT22bKynDn4TzrNwdeZ6lb9NELqCeewhifcugo/edit?usp=sharing
target: _blank
- text: 🗓️ daily materials
menu:
- text: 0️⃣ Day 1 (9/2)
href: course-materials/day1.qmd
- text: 1️⃣ Day 2 (9/3)
href: course-materials/day2.qmd
- text: 2️⃣ Day 3 (9/4)
href: course-materials/day3.qmd
- text: 3️⃣ Day 4 (9/5)
href: course-materials/day4.qmd
- text: 4️⃣ Day 5 (9/8)
href: course-materials/day5.qmd
- text: 5️⃣ Day 6 (9/9)
href: course-materials/day6.qmd
- text: 6️⃣ Day 7 (9/10)
href: course-materials/day7.qmd
- text: 7️⃣ Day 8 (9/11)
href: course-materials/day8.qmd
- text: 8️⃣ Day 9 (9/12)
href: course-materials/day9.qmd
- text: 💻 interactive sessions
menu:
- text: Session 1a - ⚒️ JupyterLab Intro and IPython
href: course-materials/interactive-sessions/1a_iPython_JupyterLab.qmd
- text: Session 1b - ⚒️ Coding in Jupyter Notebooks
href: course-materials/interactive-sessions/1b_Jupyter_Notebooks.qmd
- text: Session 1c - 🐍 Exploring Variable Types and Methods in Python
href: course-materials/interactive-sessions/1c_variables_strings.qmd
- text: Session 1d - 🐍 Operators & Functions
href: course-materials/interactive-sessions/1d_operators_functions.qmd
# - text: Session 2a - ⚒️ Getting help in Python
# href: course-materials/interactive-sessions/interactive-session-2a.qmd
- text: Session 2a - 🐍 Lists
href: course-materials/interactive-sessions/2a_lists.qmd
# - text: Session 2c - ⚒️ Errors and Debugging
# href: course-materials/interactive-sessions/interactive-session-2c.qmd
- text: Session 2b - 🐍 Dissecting Dictionaries
href: course-materials/interactive-sessions/2b_dictionaries.qmd
# - text: Session 2d - 🐍 List & Dictionary Comprehensions
# href: course-materials/interactive-sessions/2d_comprehensions.qmd
- text: Session 3a - 🐍 Introduction to Control Flows
href: course-materials/live-coding/3a_control_flows.qmd
- text: Session 3c - 🔢 Arrays and Series
href: course-materials/interactive-sessions/3c_arrays_and_series.qmd
- text: Session 4a - 🐼 DataFrames
href: course-materials/interactive-sessions/4a_dataframes.qmd
- text: Session 4c - 🐼 DataFrame Workflows
href: course-materials/interactive-sessions/4c_dataframe_workflows.qmd
- text: Session 4d - 🐼 Data Import and Export
href: course-materials/live-coding/4d_data_import_export.qmd
- text: Session 5a - 🐼 Selecing and Filtering Data
href: course-materials/live-coding/5a_selecting_and_filtering.qmd
- text: Session 5b - 🐼 Cleaning Data
href: course-materials/interactive-sessions/5b_cleaning_data.qmd
- text: Session 6a - 🐼 Grouping, Joining, and Sorting (Part I)
href: course-materials/interactive-sessions/6a_grouping_joining_sorting.qmd
# - text: Session 6b - 🐼 Grouping, Joining, and Sorting (Part II)
# href: course-materials/interactive-sessions/6b_grouping_joining_sorting_2.qmd
- text: Session 6c - 📆 Working with Dates
href: course-materials/interactive-sessions/6c_dates.qmd
- text: Session 7a - 📊 Data Visualization with Seaborn & Matplotlib (Part I)
href: course-materials/interactive-sessions/7a_visualizations_1.qmd
- text: Session 7b - 📊 Data Visualization with Seaborn & Matplotlib (Part II)
href: course-materials/interactive-sessions/7b_visualizations_2.qmd
- text: 🙌 coding colabs
menu:
- text: 🙌 Session 2c - Working with Lists, Dictionaries, and Sets
href: course-materials/coding-colabs/2c_lists_dictionaries_sets.qmd
- text: 🙌 Session 3b - Control Flows
href: course-materials/coding-colabs/3b_control_flows.qmd
- text: 🙌 Session 3d - Pandas Series
href: course-materials/coding-colabs/3d_pandas_series.qmd
- text: 🙌 Session 4b - Pandas DataFrames
href: course-materials/coding-colabs/4b_pandas_dataframes.qmd
- text: 🙌 Session 5c - Data Cleaning
href: course-materials/coding-colabs/5c_cleaning_data.qmd
- text: 🙌 Session 6b - Data Manipulation
href: course-materials/coding-colabs/6b_advanced_data_manipulation.qmd
- text: 🙌 Session 7c - Exploring data using visualizations
href: course-materials/coding-colabs/7c_visualizations.qmd
- text: 👀 cheatsheets
href: cheatsheets.qmd
# - text: 🎓 lectures
# href: course-materials/lectures/lectures.qmd
- text: 📚 resources
menu:
- text: 📚 Python Documentation
href: https://docs.python.org/3/
target: _blank
- text: 📚 Pandas Documentation
href: https://pandas.pydata.org/docs/
target: _blank
- text: 📚 Numpy Documentation
href: https://numpy.org/doc/stable/
target: _blank
- text: 📚 Matplotlib Documentation
href: https://matplotlib.org/stable/contents.html
target: _blank
- text: 📚 Seaborn Documentation
href: https://seaborn.pydata.org/
target: _blank
- text: 📚 JupyterLab Documentation
href: https://jupyterlab.readthedocs.io/en/stable/
target: _blank
- text: 📚 Anaconda Documentation
href: https://docs.anaconda.com/
target: _blank
- text: 📚 Stack Overflow
href: https://stackoverflow.com/
target: _blank
- text: 📚 Real Python
href: https://realpython.com/
target: _blank
- text: 📚 Towards Data Science
href: https://towardsdatascience.com/
target: _blank
- text: 📚 DataCamp
href: https://www.datacamp.com/
target: _blank
- text: 📚 Kaggle
href: https://www.kaggle.com/
target: _blank
- text: 🧰 Python Tutor
href: http://pythontutor.com/
target: _blank
- text: 🧰 Pandas Tutor
href: https://pandastutor.com/vis.html#
target: _blank
- text: 📙 Python for Data Analysis
href: https://wesmckinney.com/book/
target: _blank
- text: 📙 Python for Data Science Handbook
href: https://jakevdp.github.io/PythonDataScienceHandbook/
target: _blank
- text: 📙 Python Data Science Handbook (GitHub)
href: https://github.com/jakevdp/PythonDataScienceHandbook
target: _blank
- text: 📻 Talk Python to Me
href: https://talkpython.fm/
target: _blank
- icon: github
href: https://github.com/EDS-217-Essential-Python/EDS-217-Essential-Python.github.io
target: _blank
page-footer:
background: dark
right: This website is built with [{{< fa brands github title="the github octocat logo" >}}](https://github.com/EDS-217-Essential-Python/EDS-217-Essential-Python.github.io) and [Quarto](https://quarto.org/)
left: |
<img src="/images/bren-logo.png" alt="The Bren School of Environmental Science & Management logo" width="250"/>
output:
files:
- "course-materials/answer-keys/*.qmd"
- "course-materials/lectures/*.qmd"
- "course-materials/lectures/*.ipynb"
- "course-materials/live-coding/*.qmd"
format:
html:
theme: meds-website-styles.scss
toc: true
title-block-banner: true
page-layout: full
css:
- course-materials/assets/css/exercises.css
editor: source