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()
结果
自己试试 »
您将在接下来的章节中学习更多关于绘图 (plotting) 的内容。