Skip to content

Commit 8c4e7d2

Browse files
committed
更新了数据分析部分的文档
1 parent 84fe683 commit 8c4e7d2

File tree

6 files changed

+765
-29
lines changed

6 files changed

+765
-29
lines changed

Day66-70/66.数据分析概述.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,19 @@
111111

112112
对于安装了Python环境但是没有安装Anaconda的用户,可以用Python的包管理工具pip来安装`jupyter`,然后在终端(Windows系统称之为命令行提示符)中运行`jupyter notebook`命令来启动Notebook,如下所示。
113113

114-
安装
114+
安装Notebook
115115

116116
```Bash
117117
pip install jupyter
118118
```
119119

120-
运行:
120+
安装三大神器:
121+
122+
```Bash
123+
pip install numpy pandas matplotlib
124+
```
125+
126+
运行Notebook:
121127

122128
```Bash
123129
jupyter notebook
@@ -234,7 +240,7 @@ Notebook是基于网页的用于交互计算的应用程序,可以用于代码
234240

235241
**第一四分位数**($Q_1$),又称**较小四分位数****下四分位数**,等于该样本中所有数值由小到大排列后第25%的数字。
236242

237-
**第二四分位数**($Q_2$),又称**中位数**,等于该样本中所有数值由小到大排列后第50%的数字。
243+
**第二四分位数**($Q_2$),**中位数**,等于该样本中所有数值由小到大排列后第50%的数字。
238244

239245
**第三四分位数**($Q_3$),又称**较大四分位数****上四分位数**,等于该样本中所有数值由小到大排列后第75%的数字。
240246

0 commit comments

Comments
 (0)