seaborn画双折线图
时间: 2023-08-16 15:14:31 浏览: 414
绘制折线图
3星 · 编辑精心推荐
要使用seaborn库画双折线图,首先需要导入seaborn和matplotlib库。然后,你可以使用seaborn中的lineplot函数来绘制双折线图。
下面是一个简单的示例代码:
```python
import seaborn as sns
import matplotlib.pyplot as plt
# 创建一个数据集
x = [1, 2, 3, 4, 5]
y1 = [10, 8, 6, 4, 2]
y2 = [5, 4, 3, 2, 1]
# 绘制双折线图
sns.lineplot(x=x, y=y1, label='Line 1')
sns.lineplot(x=x, y=y2, label='Line 2')
# 添加标题和标签
plt.title('Double Line Plot')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 显示图形
plt.show()
```
这段代码会绘制出一个双折线图,其中x轴为1到5,y轴分别对应两条线的数据。你可以根据自己的数据进行修改和调整。
阅读全文