python在一个界面里画两张独立的折线图
时间: 2024-03-16 17:47:13 浏览: 87
python使用matplotlib绘制折线图教程
您可以使用Python的Matplotlib库来绘制折线图。以下是一个示例代码,它将在一个界面中绘制两张独立的折线图:
```python
import matplotlib.pyplot as plt
# 数据集
x1 = [1, 2, 3, 4, 5]
y1 = [10, 8, 6, 4, 2]
x2 = [1, 2, 3, 4, 5]
y2 = [2, 4, 6, 8, 10]
# 绘制第一张图
plt.subplot(2, 1, 1) # 子图1
plt.plot(x1, y1)
plt.title('Line Chart 1')
plt.xlabel('X Label')
plt.ylabel('Y Label')
# 绘制第二张图
plt.subplot(2, 1, 2) # 子图2
plt.plot(x2, y2)
plt.title('Line Chart 2')
plt.xlabel('X Label')
plt.ylabel('Y Label')
# 显示图形
plt.show()
```
在这个示例中,我们使用`plt.subplot()`函数创建了两个子图,`plt.plot()`函数分别绘制了两个数据集的折线图,并使用`plt.title()`、`plt.xlabel()`和`plt.ylabel()`函数设置了图表的标题和轴标签。最后,使用`plt.show()`函数显示图形。
阅读全文