Seaborn庫中的xlabel()和ylabel()函數用于設置圖表的x軸和y軸的標簽。這兩個函數可以分別通過sns.xlabel()和sns.ylabel()的方式來調用。以下是它們的基本用法:
import seaborn as sns
import matplotlib.pyplot as plt
# 創建一個示例圖表
sns.set(style='whitegrid')
tips = sns.load_dataset('tips')
sns.barplot(x='sex', y='total_bill', data=tips)
# 設置x軸和y軸的標簽
plt.xlabel('性別')
plt.ylabel('總賬單')
# 顯示圖表
plt.show()
在上面的示例中,我們首先創建了一個示例圖表,并使用plt.xlabel()和plt.ylabel()函數分別設置了x軸和y軸的標簽。最后使用plt.show()函數顯示圖表。您可以根據需要隨時調整標簽的內容和格式。