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