-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcheatsheets.qmd
More file actions
53 lines (42 loc) · 2.25 KB
/
Copy pathcheatsheets.qmd
File metadata and controls
53 lines (42 loc) · 2.25 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
---
title: "Cheatsheets"
subtitle: "Quick reference guides for Python Data Science"
jupyter: eds217_2026
format:
html:
toc: true
toc-depth: 2
---
## ⚒️ Setup & Tools
- [Setting up Python](course-materials/cheatsheets/setting_up_python.qmd)
- [Positron: Variables Pane, Magics, and Shortcuts](course-materials/cheatsheets/positron.qmd)
## 🐍 Python Basics
- [Python Basics](course-materials/cheatsheets/first_steps.qmd)
- [Python Functions](course-materials/cheatsheets/functions.qmd)
- [Lists](course-materials/cheatsheets/lists.qmd)
- [Dictionaries](course-materials/cheatsheets/dictionaries.qmd)
- [Control Flows](course-materials/cheatsheets/control_flows.qmd)
- [print()](course-materials/cheatsheets/print.qmd)
## 🐼 Pandas
- [Pandas 1-pager PDF](course-materials/cheatsheets/Pandas_Cheat_Sheet.pdf)
- [Pandas Series](course-materials/cheatsheets/pandas_series.qmd)
- [Pandas DataFrames](course-materials/cheatsheets/pandas_dataframes.qmd)
- [Pandas DataFrame Methods and Data Science Workflows](course-materials/cheatsheets/workflow_methods.qmd)
- [read_csv()](course-materials/cheatsheets/read_csv.qmd)
- [Data Cleaning](course-materials/cheatsheets/data_cleaning.qmd)
- [Data Filtering & Selection](course-materials/cheatsheets/data_selection.qmd)
- [Data Grouping & Aggregation](course-materials/cheatsheets/data_grouping.qmd)
- [Merging and Joining Data](course-materials/cheatsheets/data_merging.qmd)
- [Working with Timeseries](course-materials/cheatsheets/timeseries.qmd)
## 📊 Data Visualization
- [Seaborn Basics](course-materials/cheatsheets/seaborn.qmd)
- [Matplotlib Basics](course-materials/cheatsheets/matplotlib.qmd)
- [Matplotlib Cheatsheet](course-materials/cheatsheets/matplotlib_cheatsheet.pdf)
- [plt.bar() [Matplotlib]](course-materials/cheatsheets/bar_plots.qmd)
- [Chart Customization](course-materials/cheatsheets/chart_customization.qmd)
## 📎 Beyond EDS 217
These pages cover material this course does not teach. They are here so that the syntax is
available when you meet it in code written by other people, or in later coursework.
- [Sets](course-materials/cheatsheets/sets.qmd)
- [List and Dictionary Comprehensions](course-materials/cheatsheets/comprehensions.qmd)
- [Numpy Basics](course-materials/cheatsheets/numpy.qmd)