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/