python,有两个数组,绘制折线图
时间: 2023-10-09 17:04:20 浏览: 91
利用python画出折线图
可以使用 Matplotlib 库来绘制折线图。以下是一个简单的示例代码,可以帮助你快速上手:
```python
import matplotlib.pyplot as plt
# 两个数组
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制折线图
plt.plot(x, y)
# 添加标题和标签
plt.title('Line Chart')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 显示图像
plt.show()
```
以上代码将绘制一个简单的折线图,其中 x 和 y 分别代表 x 轴和 y 轴的数据。你可以根据自己的需求修改数据和样式。
阅读全文