Seaborn手動(dòng)創(chuàng)建圖例的方法是什么

小億
98
2024-05-17 18:12:14
欄目: 編程語言

在Seaborn中,可以通過使用matplotlibLegend對(duì)象來手動(dòng)創(chuàng)建圖例。具體步驟如下:

  1. 導(dǎo)入matplotlib庫:
import matplotlib.pyplot as plt
  1. 創(chuàng)建Seaborn圖表,并保存返回的Axes對(duì)象:
ax = sns.scatterplot(x='x', y='y', data=data)
  1. 使用ax.legend()方法創(chuàng)建圖例:
ax.legend(['Label 1', 'Label 2', 'Label 3'])

ax.legend()方法中傳入一個(gè)包含圖例標(biāo)簽的列表,即可手動(dòng)創(chuàng)建圖例??梢愿鶕?jù)需要自定義圖例的位置、大小、顏色等屬性。

0