Skip to content
Draft
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
7ab21c3
Initial plan
Copilot Aug 29, 2025
4ebe07f
Create polars lecture based on pandas lecture and add to TOC
Copilot Aug 29, 2025
65e4ef8
Fix Polars .suffix() method to use .name.suffix() for compatibility
Copilot Aug 29, 2025
de01b78
Fix column name from 'DATE' to 'observation_date' in FRED data filtering
Copilot Aug 29, 2025
490372f
Fix TypeError in Polars exercise and update pivot API usage
Copilot Aug 29, 2025
ea139df
Fix DuplicateError in Polars exercise join logic by using concat and …
Copilot Aug 31, 2025
b67e56b
initial @mmcky review, in-work
mmcky Sep 1, 2025
746f18c
updates to series section
mmcky Sep 4, 2025
4e654c7
edit round of DataFrames
mmcky Sep 5, 2025
018fe74
Update lectures/polars.md
mmcky Sep 8, 2025
7d84e12
Update lectures/polars.md
mmcky Sep 8, 2025
c776ffb
Update lectures/polars.md
mmcky Sep 8, 2025
05e0523
Update lectures/polars.md
mmcky Sep 8, 2025
4fdd052
Update lectures/polars.md
mmcky Sep 8, 2025
2e51b8c
Update lectures/polars.md
mmcky Sep 8, 2025
7c3e1ed
Update lectures/polars.md
mmcky Sep 8, 2025
f73ead1
Update lectures/polars.md
mmcky Sep 8, 2025
77982bf
Update lectures/polars.md
mmcky Sep 8, 2025
914364f
Update lectures/polars.md
mmcky Sep 8, 2025
0c05e46
Update lectures/polars.md
mmcky Sep 8, 2025
6382783
Update lectures/polars.md
mmcky Sep 8, 2025
0704681
Update lectures/polars.md
mmcky Sep 8, 2025
bf26d68
Update lectures/polars.md
mmcky Sep 8, 2025
c923a65
Update lectures/polars.md
mmcky Sep 8, 2025
2d4c312
Update lectures/polars.md
mmcky Sep 8, 2025
401b2ee
Update lectures/polars.md
mmcky Sep 8, 2025
bec5d9f
FIX: removed closing brackets
mmcky Sep 8, 2025
ef004f2
add in cell fence removed from comments
mmcky Sep 8, 2025
3356a1a
Merge branch 'main' into copilot/fix-407
mmcky Sep 8, 2025
6e2d434
add in missing url
mmcky Sep 8, 2025
50a708c
Remove Exercises
mmcky Sep 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lectures/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ parts:
- file: matplotlib
- file: scipy
- file: pandas
- file: polars
- file: pandas_panel
- file: sympy
- caption: High Performance Computing
Expand Down
1 change: 1 addition & 0 deletions lectures/pandas.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ You can think of a `Series` as a "column" of data, such as a collection of obser

A `DataFrame` is a two-dimensional object for storing related columns of data.

(pandas:series)=
## Series

```{index} single: Pandas; Series
Expand Down
Loading
Loading