在matplotlib中绘制折线图
时间: 2024-03-21 14:34:30 浏览: 95
[Matplotlib科学绘图系列]使用Matplotlib绘制折线图
以下是在matplotlib中绘制折线图的示例:
```python
from matplotlib import pyplot as plt
dev_x = [25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35]
dev_y = [38496, 42000, 46752, 49320, 53200, 56000, 62316, 64928, 67317, 68748, 73752]
plt.plot(dev_x, dev_y)
plt.show()
```
阅读全文