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--
|
|
|
|
*動画で説明しているように、notebooks.ai を使用する代わりに Google Colab を使用することができます。*
|
|
|
|
その他のリソース:
|
|
|
|
- [GitHub のノート](https://github.com/ine-rmotr-curriculum/data-cleaning-rmotr-freecodecamp)
|
|
- [Google Colab を使用して GitHub からノートを開く方法](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--
|
|
|
|
図には 1 列、2 行があり、最初の (左の) プロットで図を描き始める。
|
|
|
|
---
|
|
|
|
最初の (左の) プロットで図を描き始め、図は 2 行、1 列となる。
|
|
|
|
---
|
|
|
|
図には 1 行、2 列があり、最初の (左の) プロットで図を描き始める。
|
|
|
|
## --video-solution--
|
|
|
|
3
|
|
|