Matplotlib 教程 - 简介和安装

Jinku Hu 2023年1月30日 2018年8月22日
  1. 安装 Matplotlib
  2. 的 Linux
  3. MatplotlibHello World
Matplotlib 教程 - 简介和安装

Matplotlib 是使用最广泛的 Python 模块来绘制图形。它可以轻松生成可随时发布的数据,并可以在不同的平台上使用。

pyplot Matplotlib 的模块具有类似于 MATLAB 的界面,因此 pyplot 如果你已经是 MATLAB 的用户,则使用起来会更容易。

安装 Matplotlib

视窗

-- pip

pip install matplotlib

pip 命令还会自动安装 Matplotlib 依赖项。

-安装车轮文件

你还可以从著名的非官方 Windows Binary for Python Extension Packages 网站下载 Python 2.7 或 Python 3.4+ 版本的非官方预构建 32 或 64 位 Windows Matplotlib 轮文件。

下载 wheel 文件后,使用以下命令安装 wheel 文件。

pip install matplot_wheel_file_path

请参阅此处轮文件安装指南

的 Linux

打开 Linux 终端,并根据系统中的 Python 版本使用以下命令。

Python 2.7

sudo apt-get install python-matplotlib

Python 3.4 以上

sudo apt-get instlal python3-matplotlib

MatplotlibHello World

现在,我们将第一口 Matplotlib。

from matplotlib import pyplot as plt

plt.plot([1,2,3], [4,5,6])
plt.show()

本示例绘制了具有 2-D 数据-的直线的图形 [1,2,3],[4,5,6]

from matplotlib import pyplot as plt

如上所述,它 pyplot 是一个类似于 MATLAB 的绘图模块。

plt.plot([1,2,3], [4,5,6])

由于未在此处传递任何额外的参数,因此它会绘制 xy 使用默认的线条和颜色样式。

plt.show()

它显示该图。执行此行之前,不会显示绘图图。

MatplotlibHello World

Author: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn