目录

Matplotlib Pyplot


pyplot

大多数 Matplotlib 实用程序都位于pyplot子模块,通常在plt别名:

import matplotlib.pyplot as plt

现在 Pyplot 包可以称为plt

示例

在图中从位置 (0,0) 到位置 (6,250) 绘制一条线:

import matplotlib.pyplot as plt
import numpy as np

xpoints = np.array([0, 6])
ypoints = np.array([0, 250])

plt.plot(xpoints, ypoints)
plt.show()

结果:

亲自试一试 »

您将在接下来的章节中了解有关绘图(绘图)的更多信息。