阅读量:0
在Seaborn中,可以通过使用matplotlib
的Legend
对象来手动创建图例。具体步骤如下:
- 导入
matplotlib
库:
import matplotlib.pyplot as plt
- 创建Seaborn图表,并保存返回的
Axes
对象:
ax = sns.scatterplot(x='x', y='y', data=data)
- 使用
ax.legend()
方法创建图例:
ax.legend(['Label 1', 'Label 2', 'Label 3'])
在ax.legend()
方法中传入一个包含图例标签的列表,即可手动创建图例。可以根据需要自定义图例的位置、大小、颜色等属性。