使用matplotlib库绘制折线图
时间: 2023-10-17 22:14:14 浏览: 91
[Matplotlib科学绘图系列]使用Matplotlib绘制折线图
好的,以下是绘制折线图的示例代码:
```python
import matplotlib.pyplot as plt
# 定义 x 和 y 坐标
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 坐标的值,以及添加更多的样式和标签。
阅读全文