Skip to content

Commit 18cf80f

Browse files
committed
Correct _quarto.yml structure by moving chapters to top level
1 parent babe949 commit 18cf80f

1 file changed

Lines changed: 40 additions & 43 deletions

File tree

mybook/_quarto.yml

Lines changed: 40 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -5,49 +5,46 @@ book:
55
title: "데이터 과학을 위한 파이썬 프로그래밍"
66
author: "Tomas Beuzen"
77
repo-url: "https://github.com/TomasBeuzen/python-programming-for-data-science"
8-
sidebar:
9-
style: "floating"
10-
search: true
11-
contents:
12-
- index.qmd
13-
- part: "강의 본문"
14-
chapters:
15-
- text: "1장: 파이썬 기초"
16-
file: chapters/chapter1-basics.ipynb
17-
- text: "2장: 반복문과 함수"
18-
file: chapters/chapter2-loops-functions.ipynb
19-
- text: "3장: 단위 테스트와 클래스"
20-
file: chapters/chapter3-tests-classes.ipynb
21-
- text: "4장: 스타일 가이드, 스크립트, 임포트"
22-
file: chapters/chapter4-style-scripts-imports.ipynb
23-
- text: "5장: NumPy 기초"
24-
file: chapters/chapter5-numpy.ipynb
25-
- text: "6장: NumPy 추가 내용"
26-
file: chapters/chapter6-numpy-addendum.ipynb
27-
- text: "7장: Pandas 기초"
28-
file: chapters/chapter7-pandas.ipynb
29-
- text: "8장: 데이터 랭글링 기초"
30-
file: chapters/chapter8-wrangling-basics.ipynb
31-
- text: "9장: 데이터 랭글링 심화"
32-
file: chapters/chapter9-wrangling-advanced.ipynb
33-
- part: "연습 문제"
34-
chapters:
35-
- text: "1장 연습 문제"
36-
file: practice-exercises/chapter1-basics-practice.ipynb
37-
- text: "2장 연습 문제"
38-
file: practice-exercises/chapter2-loops-functions-practice.ipynb
39-
- text: "3장 연습 문제"
40-
file: practice-exercises/chapter3-tests-classes-practice.ipynb
41-
- text: "4장 연습 문제"
42-
file: practice-exercises/chapter4-style-scripts-imports-practice.ipynb
43-
- text: "5장 연습 문제"
44-
file: practice-exercises/chapter5-numpy-practice.ipynb
45-
- text: "7장 연습 문제"
46-
file: practice-exercises/chapter7-pandas-practice.ipynb
47-
- text: "8장 연습 문제"
48-
file: practice-exercises/chapter8-wrangling-basics-practice.ipynb
49-
- text: "9장 연습 문제"
50-
file: practice-exercises/chapter9-wrangling-advanced-practice.ipynb
8+
chapters:
9+
- index.qmd
10+
- part: "강의 본문"
11+
chapters:
12+
- text: "1장: 파이썬 기초"
13+
file: chapters/chapter1-basics.ipynb
14+
- text: "2장: 반복문과 함수"
15+
file: chapters/chapter2-loops-functions.ipynb
16+
- text: "3장: 단위 테스트와 클래스"
17+
file: chapters/chapter3-tests-classes.ipynb
18+
- text: "4장: 스타일 가이드, 스크립트, 임포트"
19+
file: chapters/chapter4-style-scripts-imports.ipynb
20+
- text: "5장: NumPy 기초"
21+
file: chapters/chapter5-numpy.ipynb
22+
- text: "6장: NumPy 추가 내용"
23+
file: chapters/chapter6-numpy-addendum.ipynb
24+
- text: "7장: Pandas 기초"
25+
file: chapters/chapter7-pandas.ipynb
26+
- text: "8장: 데이터 랭글링 기초"
27+
file: chapters/chapter8-wrangling-basics.ipynb
28+
- text: "9장: 데이터 랭글링 심화"
29+
file: chapters/chapter9-wrangling-advanced.ipynb
30+
- part: "연습 문제"
31+
chapters:
32+
- text: "1장 연습 문제"
33+
file: practice-exercises/chapter1-basics-practice.ipynb
34+
- text: "2장 연습 문제"
35+
file: practice-exercises/chapter2-loops-functions-practice.ipynb
36+
- text: "3장 연습 문제"
37+
file: practice-exercises/chapter3-tests-classes-practice.ipynb
38+
- text: "4장 연습 문제"
39+
file: practice-exercises/chapter4-style-scripts-imports-practice.ipynb
40+
- text: "5장 연습 문제"
41+
file: practice-exercises/chapter5-numpy-practice.ipynb
42+
- text: "7장 연습 문제"
43+
file: practice-exercises/chapter7-pandas-practice.ipynb
44+
- text: "8장 연습 문제"
45+
file: practice-exercises/chapter8-wrangling-basics-practice.ipynb
46+
- text: "9장 연습 문제"
47+
file: practice-exercises/chapter9-wrangling-advanced-practice.ipynb
5148

5249
format:
5350
html:

0 commit comments

Comments
 (0)