matplotlib折线图设置线型
时间: 2023-10-28 10:54:57 浏览: 79
matplotlib绘制折线图
5星 · 资源好评率100%
在matplotlib中,可以使用`linestyle`参数设置折线图的线型。常用的线型有:
- `-` 实线(默认)
- `--` 虚线
- `-.` 点划线
- `:` 点线
示例代码:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
plt.plot(x, y, linestyle='--') # 设置虚线
plt.show()
```
输出结果:
![折线图设置线型](https://img-blog.csdnimg.cn/20210711115659360.png)
阅读全文