生成一个用matplotlib绘制折线图的代码
时间: 2023-05-19 15:04:36 浏览: 114
python使用matplotlib绘制折线图的示例代码
当然可以,以下是一个简单的用matplotlib绘制折线图的代码:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.xlabel('X Label')
plt.ylabel('Y Label')
plt.title('Title')
plt.show()
```
这个代码会生成一个简单的折线图,x轴是1到5,y轴是2到10。你可以根据自己的需要修改x和y的值,以及添加更多的自定义设置。
阅读全文