subplot使用方法
时间: 2024-01-05 20:56:10 浏览: 71
MATLAB中subplot的用法.pdf
5星 · 资源好评率100%
subplot()函数是用于在一个Figure对象中创建多个子图的函数,其语法格式如下:
subplot(nrows, ncols, plot_number)
其中,nrows和ncols指定了子图的行数和列数,plot_number指定了当前要创建的子图的位置。例如,subplot(2, 2, 1)表示在一个2行2列的子图中创建第1个子图。
下面是一个例子,演示如何使用subplot()函数创建多个子图:
```python
import matplotlib.pyplot as plt
import numpy as np
# 生成数据
x = np.linspace(0, 2*np.pi, 100)
y1 = np.sin(x)
y2 = np.cos(x)
y3 = np.tan(x)
# 创建一个Figure对象,并在其中创建3个子图
fig = plt.figure()
ax1 = fig.add_subplot(2, 2, 1)
ax1.plot(x, y1)
ax1.set_title('sin')
ax2 = fig.add_subplot(2, 2, 2)
ax2.plot(x, y2)
ax2.set_title('cos')
ax3 = fig.add_subplot(2, 2, 3)
ax3.plot(x, y3)
ax3.set_title('tan')
plt.show()
```
上述代码中,我们首先生成了三组数据,然后创建了一个Figure对象。接着,使用add_subplot()方法在Figure对象中创建了3个子图,并分别在每个子图中绘制了不同的数据,并设置了子图的标题。最后,使用show()方法显示了整个Figure对象。执行上述代码,会得到如下图所示的结果:
![subplot使用方法](https://img-blog.csdnimg.cn/20210925150144349.png)
阅读全文