matplotlib折线图设置线宽
时间: 2023-12-07 16:38:35 浏览: 136
matlab画图时设置线宽和字号的方法
设置Matplotlib折线图的线宽可以使用`linewidth`参数,该参数用于设置折线的宽度,具体操作如下所示:
```python
from matplotlib import pyplot as plt
x = range(1, 10)
y = [6, 7, 12, 12, 15, 17, 15, 20, 18]
# 传入x,y,通过plot画图,并设置折线颜色、透明度、折线样式和折线宽度
plt.plot(x, y, color='red', alpha=0.3, linestyle='--', linewidth=5)
# 显示图形
plt.show()
```
在上述代码中,`linewidth`参数设置为`5`,即可将折线的宽度设置为`5`。
--相关问题--:
1. 如何在Matplotlib中设置折线图的标题?
2. 如何在Matplotlib中设置折线
阅读全文