--- 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