在Seaborn中,可以通過使用matplotlib
的Legend
對(duì)象來手動(dòng)創(chuàng)建圖例。具體步驟如下:
matplotlib
庫:import matplotlib.pyplot as plt
Axes
對(duì)象:ax = sns.scatterplot(x='x', y='y', data=data)
ax.legend()
方法創(chuàng)建圖例:ax.legend(['Label 1', 'Label 2', 'Label 3'])
在ax.legend()
方法中傳入一個(gè)包含圖例標(biāo)簽的列表,即可手動(dòng)創(chuàng)建圖例??梢愿鶕?jù)需要自定義圖例的位置、大小、顏色等屬性。