Python Matplotlib新增折线图数据
时间: 2023-12-04 09:06:10 浏览: 235
python使用matplotlib绘制折线图教程
5星 · 资源好评率100%
要向Matplotlib中的折线图添加数据,可以使用plot()函数。以下是一个示例代码,演示如何添加新的折线图数据:
```python
import matplotlib.pyplot as plt
# 创建x和y的数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制初始折线图
plt.plot(x, y)
# 添加新的折线图数据
x_new = [6, 7, 8, 9, 10]
y_new = [12, 14, 16, 18, 20]
plt.plot(x_new, y_new)
# 显示图形
plt.show()
```
在这个例子中,我们首先创建了x和y的初始数据,并将它们传递给plot()函数来绘制折线图。然后,我们创建了新的x_new和y_new数据,并使用相同的plot()函数将它们添加到同一个图形中。
最后,我们使用show()函数显示图形。
阅读全文