Matplotlib - PyLab 模块



PyLab 是 Matplotlib 面向对象绘图库的过程接口。Matplotlib 是整个包;matplotlib.pyplot 是 Matplotlib 中的一个模块;PyLab 是与 Matplotlib 一起安装的模块。

PyLab 是一个方便的模块,它在一个命名空间中批量导入 matplotlib.pyplot(用于绘图)和 NumPy(用于数学和数组操作)。尽管许多示例使用 PyLab,但它不再推荐。

基本绘图

曲线绘图使用 plot 命令完成。它接受一对长度相同的数组(或序列)−

from numpy import *
from pylab import *
x = linspace(-3, 3, 30)
y = x**2
plot(x, y)
show()

以上代码行生成以下输出−

Basic Plotting

要绘制符号而不是线条,请提供额外的字符串参数。

符号 - , –, -., , . , , , o , ^ , v , < , > , s , + , x , D , d , 1 , 2 , 3 , 4 , h , H , p , | , _
颜色 b, g, r, c, m, y, k, w

现在,考虑执行以下代码−

from pylab import *
x = linspace(-3, 3, 30)
y = x**2
plot(x, y, 'r.')
show()

它绘制如下所示的红色点−

Additional String Argument

可以叠加绘图。只需使用多个 plot 命令。使用 clf() 清除绘图。

from pylab import *
plot(x, sin(x))
plot(x, cos(x), 'r-')
plot(x, -sin(x), 'g--')
show()

以上代码行生成以下输出−

Multiple Plot Commands
广告