Learn the basics of Matplotlib in this crash course tutorial. Matplotlib is an amazing data visualization library for Python. You will also learn how to apply Matplotlib to real-world problems.
在此速成班教程中學習Matplotlib的基礎知識。 Matplotlib是一個很棒的Python數據可視化庫。 您還將學習如何將Matplotlib應用于實際問題。
You can watch the full course here (90 minute watch).
您可以在此處觀看完整課程 (觀看90分鐘)。
課程筆記 (Course Notes)
🔗 Source Code
🔗 源代碼
🔗 Matplotlib Pyplot Documentation
🔗Matplotlib Pyplot文檔
🔗 Font List
🔗 字體列表
🔗 Matplotlib Style Options
🔗Matplotlib樣式選項
🔗 Kaggle Data Link
🔗Kaggle 數據鏈接
如何安裝Matplotlib所需的庫 (How to Install libraries Needed for Matplotlib)
選項1:如何使用pip install直接安裝Matplotlib (Option 1: How to Install Matplotlib directly using pip install)
- Open up a terminal window and type 打開終端窗口并輸入
- pip install matplotlib pip安裝matplotlib
- pip install numpy 點安裝numpy
- pip install pandas 點安裝熊貓
選項2:如何安裝Anaconda (Option 2: How to install Anaconda)
Download Anaconda, which will contain all the packages we need. Here's a video tutorial that walks you through how to do this.
下載Anaconda,它將包含我們需要的所有軟件包。 這是一個視頻教程,引導您完成操作 。
Again, you can watch the full course here (90 minute watch).
同樣,您可以在這里觀看完整的課程 (觀看90分鐘)。
翻譯自: https://www.freecodecamp.org/news/matplotlib-course-learn-python-data-visualization/