matplotlib线条样式
时间: 2023-09-04 22:07:50 浏览: 79
python matplotlib折线图样式实现过程
5星 · 资源好评率100%
matplotlib提供了多种线条样式供用户选择,常用的有以下几种:
1. 实线(solid):'-'
2. 虚线(dashed):'--'
3. 点线(dotted):':'
4. 点划线(dashdot):'-.'
你可以在绘制线条时,通过设置`linestyle`参数来选择不同的线条样式。例如,以下代码会绘制一条红色的虚线:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y, color='red', linestyle='--')
plt.show()
```
除了`linestyle`参数外,你还可以通过设置`linewidth`参数来调整线条的粗细。例如,以下代码会绘制一条蓝色的粗线:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y, color='blue', linewidth=2)
p
阅读全文