-
Notifications
You must be signed in to change notification settings - Fork 12
/
_toc.yml
190 lines (183 loc) · 6.2 KB
/
_toc.yml
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
183
184
185
186
187
188
189
190
# Table of contents
# Learn more at https://jupyterbook.org/customize/toc.html
format: jb-book
root: intro
parts:
- caption: 指引 📌
chapters:
- file: doc/指引/使用说明
- file: doc/指引/在线执行
- title: 入门教程
file: doc/chapter0/入门教程
sections:
- title: Python安装与配置
file: doc/chapter0/Python安装
- title: Pandas快速开始
file: doc/chapter0/入门pandas
- title: 十分钟入门Pandas
file: doc/chapter0/10分钟入门pandas
- title: Pandas对比Excel
file: doc/chapter0/Pandas对比Excel
- title: Pandas对比R
file: doc/chapter0/Pandas对比R
- caption: 图解Pandas 🔥
chapters:
#######################################################################################
#chapt1
- title: 数据加载与存储
file: doc/chapter1/chapt1
sections:
- title: 常见格式读取
file: doc/chapter1/常见文件读取
sections:
- title: 读取 Excel
file: doc/chapter1/读取Excel文件
- title: 读取 TXT
file: doc/chapter1/读取TXT
- title: 读取 JSON
file: doc/chapter1/读取JSON
- title: 读取 SQL
file: doc/chapter1/读取SQL
- title: 读取 HDF5
file: doc/chapter1/读取HDF5
- title: 读取网页
file: doc/chapter1/读取网页
- title: 读取剪贴板
file: doc/chapter1/读取剪贴板
- title: 常见数据创建
file: doc/chapter1/从列表创建
# sections:
# - title: 从列表创建
# file: doc/chapter1/从列表创建
# - title: 从字典创建
# file: doc/chapter1/从字典创建
# - title: 从集合创建
# file: doc/chapter1/从集合创建
- title: 数据存储
file: doc/chapter1/数据存储
#######################################################################################
#chapt2
- title: 数据预览与预处理
file: doc/chapter2/chapt2
sections:
- title: 数据信息预览
file: doc/chapter2/数据预览
- title: 缺失值检查与处理
file: doc/chapter2/缺失值检查
- title: 重复值检查与处理
file: doc/chapter2/重复值检查与处理
#######################################################################################
#chapt2 补充
- title: 数据统计与描述性统计分析
file: doc/chapter2-2/数据统计描述性分析
#######################################################################################
#chapt3
- title: 数据修改与筛选
file: doc/chapter3/chapt3
sections:
- title: 数据修改
file: doc/chapter3/数据修改
- title: 数据筛选
file: doc/chapter3/数据筛选
#######################################################################################
#chapt4
- title: 数据分组与聚合
file: doc/chapter4/数据分组与聚合
sections:
- title: 数据分组
file: doc/chapter4/数据分组
- title: 数据聚合
file: doc/chapter4/数据聚合
#######################################################################################
#chapt5
- title: 数据透视与合并
file: doc/chapter5/数据透视与合并
sections:
- title: 数据透视
file: doc/chapter5/数据透视
- title: 数据合并
file: doc/chapter5/数据合并
sections:
- title: merge - 数据连接
file: doc/chapter5/merge
- title: concat - 数据拼接
file: doc/chapter5/concat
- title: join - 横向连接
file: doc/chapter5/join
#######################################################################################
#chapt6
- title: 金融数据与时间处理
file: doc/chapter6/chapt6
sections:
- title: 时间处理
file: doc/chapter6/时间处理
- title: 股票数据分析
file: doc/chapter6/股票数据分析
- title: 制作K线图
file: doc/chapter6/制作K线图
#######################################################################################
#chapt7
- title: 数据可视化
file: doc/chapter7/chapt7
sections:
- title: 折线图
file: doc/chapter7/折线图
- title: 条形图
file: doc/chapter7/条形图
- title: 直方图
file: doc/chapter7/直方图
- title: 散点图
file: doc/chapter7/散点图
- title: 更多图形
file: doc/chapter7/更多图形
- title: 更多样式
file: doc/chapter7/更多样式
#######################################################################################
#chapt8
- title: 个性化显示
file: doc/chapter8/chapt8
sections:
- title: option
file: doc/chapter8/option
- title: style
file: doc/chapter8/style
#######################################################################################
#chapt9
- title: 更多未提及操作
file: doc/chapter9/chapt9
sections:
- title: map与applymap
file: doc/chapter9/map与applymap
- title: stack与unstack
file: doc/chapter9/stack与unstack
- title: isin - 筛选
file: doc/chapter9/isin筛选
- title: select_dtypes - 筛选
file: doc/chapter9/select_dtypes筛选
- title: explode - 数据展开
file: doc/chapter9/explode数据展开
- title: cusum - 累加计算
file: doc/chapter9/cusum累加计算
- title: nunique - 统计
file: doc/chapter9/nunique-统计
- title: append - 数据添加
file: doc/chapter9/append
- title: compare - 数据比较
file: doc/chapter9/compare
######################################################################################
#chapt11
- title: 常见操作合集
file: doc/chapter11/chapt11
sections:
- title: 数据编码的十种方式
file: doc/chapter11/Data_encoding
######################################################################################
#chapt10
- caption: 更多内容 🚀
chapters:
- title: Jupyter Notebook 进阶技巧
file: doc/chapter10/jupyter-notebook
- title: Myst syntax cheat sheet
file: doc/chapter10/cheatsheet
- title: ☕️ 支持网站
file: doc/chapter10/donate