Skip to content

Commit 14db431

Browse files
committed
refactor: Relocate book content and configuration into mybook/ directory for Quarto project structure.
1 parent 1b0efba commit 14db431

75 files changed

Lines changed: 5368 additions & 2312 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# SCM syntax highlighting & preventing 3-way merges
2+
pixi.lock merge=binary linguist-language=YAML linguist-generated=true -diff

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# pixi environments
2+
.pixi/*
3+
!.pixi/config.toml

chapters/data/bad_style.py

Lines changed: 0 additions & 28 deletions
This file was deleted.

mybook/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.quarto/
2+
**/*.quarto_ipynb
File renamed without changes.

mybook/_quarto.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
project:
2+
type: book
3+
4+
book:
5+
title: "Python Programming for Data Science"
6+
author: "Tomas Beuzen"
7+
repo-url: "https://github.com/TomasBeuzen/python-programming-for-data-science"
8+
chapters:
9+
- index.qmd
10+
- part: "Chapters"
11+
chapters:
12+
- chapters/chapter1-basics.ipynb
13+
- chapters/chapter2-loops-functions.ipynb
14+
- chapters/chapter3-tests-classes.ipynb
15+
- chapters/chapter4-style-scripts-imports.ipynb
16+
- chapters/chapter5-numpy.ipynb
17+
- chapters/chapter6-numpy-addendum.ipynb
18+
- chapters/chapter7-pandas.ipynb
19+
- chapters/chapter8-wrangling-basics.ipynb
20+
- chapters/chapter9-wrangling-advanced.ipynb
21+
- part: "Practice Exercises"
22+
chapters:
23+
- practice-exercises/chapter1-basics-practice.ipynb
24+
- practice-exercises/chapter2-loops-functions-practice.ipynb
25+
- practice-exercises/chapter3-tests-classes-practice.ipynb
26+
- practice-exercises/chapter4-style-scripts-imports-practice.ipynb
27+
- practice-exercises/chapter5-numpy-practice.ipynb
28+
- practice-exercises/chapter7-pandas-practice.ipynb
29+
- practice-exercises/chapter8-wrangling-basics-practice.ipynb
30+
- practice-exercises/chapter9-wrangling-advanced-practice.ipynb
31+
32+
format:
33+
html:
34+
theme: cosmo
File renamed without changes.
Lines changed: 171 additions & 171 deletions
Large diffs are not rendered by default.

chapters/chapter2-loops-functions.ipynb renamed to mybook/chapters/chapter2-loops-functions.ipynb

Lines changed: 157 additions & 157 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)