matplot库画三条折线图设置线的颜色,线条宽度1.0
时间: 2024-02-19 18:03:51 浏览: 84
好的,以下是使用Matplotlib库画三条折线图并设置线的颜色和线条宽度的示例代码:
```python
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5]
y1 = [1, 3, 2, 4, 5]
y2 = [3, 4, 1, 5, 2]
y3 = [2, 5, 4, 1, 3]
# 画图
plt.plot(x, y1, color='red', linewidth=1.0, label='Line 1')
plt.plot(x, y2, color='green', linewidth=1.0, label='Line 2')
plt.plot(x, y3, color='blue', linewidth=1.0, label='Line 3')
# 添加图例和标题
plt.legend()
plt.title('Three Lines')
# 显示图像
plt.show()
```
在上面的代码中,我们使用`plt.plot()`函数画了三条折线图,并分别设置了不同的颜色和线条宽度。然后,使用`plt.legend()`和`plt.title()`函数添加图例和标题。最后,使用`plt.show()`函数显示图像。
你可以根据自己的需求修改以上的示例代码,例如调整线条宽度或者更改颜色。
相关问题
matplot库画三条折线图设置线的颜色,x轴倾斜45度
好的,以下是使用Matplotlib库画三条折线图并设置线的颜色,以及倾斜x轴45度的示例代码:
```python
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5]
y1 = [1, 3, 2, 4, 5]
y2 = [3, 4, 1, 5, 2]
y3 = [2, 5, 4, 1, 3]
# 画图
plt.plot(x, y1, color='red', label='Line 1')
plt.plot(x, y2, color='green', label='Line 2')
plt.plot(x, y3, color='blue', label='Line 3')
# 设置x轴倾斜45度
plt.xticks(rotation=45)
# 添加图例和标题
plt.legend()
plt.title('Three Lines')
# 显示图像
plt.show()
```
在上面的代码中,我们使用`plt.plot()`函数画了三条折线图,并分别设置了不同的颜色和标签。然后,使用`plt.xticks(rotation=45)`函数将x轴标签倾斜45度,使用`plt.legend()`和`plt.title()`函数添加图例和标题。最后,使用`plt.show()`函数显示图像。
你可以根据自己的需求修改以上的示例代码。
阅读全文