plt.plot如何调线的粗细
时间: 2023-10-23 09:34:03 浏览: 193
matplotlib设置颜色、标记、线条,让你的图像更加丰富(推荐)
要调整线的粗细,可以使用`linewidth`参数来设置。例如,以下代码将绘制一个线宽为2的折线图:
```python
import matplotlib.pyplot as plt
# 示例数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制折线图
plt.plot(x, y, linewidth=2)
# 显示图形
plt.show()
```
在`plt.plot()`函数中,通过指定`linewidth`参数为2,可以将线的粗细设置为2像素。你可以根据需要自行调整`linewidth`的值。
阅读全文