48 lines
1.2 KiB
Markdown
48 lines
1.2 KiB
Markdown
---
|
|
id: 5e9a093a74c4063ca6f7c160
|
|
title: 数据清理和可视化
|
|
challengeType: 11
|
|
videoId: mHjxzFS5_Z0
|
|
bilibiliIds:
|
|
aid: 933107558
|
|
bvid: BV1KM4y137Ny
|
|
cid: 409019632
|
|
dashedName: data-cleaning-and-visualizations
|
|
---
|
|
|
|
# --description--
|
|
|
|
*在视频中我们使用的编辑器工具是在 notebook.ai 这个平台,你也可以选择用其他的平台,比如说 Google Colab 也是一个不错的选择。*
|
|
|
|
更多资源:
|
|
|
|
- [在 GitHub 平台的 Notebooks](https://github.com/ine-rmotr-curriculum/data-cleaning-rmotr-freecodecamp)
|
|
- [如何使用 Google Colab 来打开 GitHub 上的 Notebooks](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
|
|
|
|
# --question--
|
|
|
|
## --text--
|
|
|
|
当使用 Matplotlib 的全局 API 时,数字的顺序在这里意味着什么?
|
|
|
|
```py
|
|
plt.subplot(1, 2, 1)
|
|
```
|
|
|
|
## --answers--
|
|
|
|
这里将创建一个图像包括一列、两行,并且我将开始在第一个图(左)绘图。
|
|
|
|
---
|
|
|
|
我将开始在第一个图表(左)绘图,同时我的图像将有两行,也将有一列。
|
|
|
|
---
|
|
|
|
这里将创建一个图像包括一行、两列,并且我将开始在第一个图表(左)绘图。
|
|
|
|
## --video-solution--
|
|
|
|
3
|
|
|