Seaborn庫(kù)中的despine()函數(shù)用于移除圖表的邊框。該函數(shù)默認(rèn)情況下會(huì)移除圖表的右側(cè)和頂部的邊框。
使用方法如下:
import seaborn as sns
import matplotlib.pyplot as plt
# 創(chuàng)建一個(gè)示例圖表
sns.set(style="whitegrid")
tips = sns.load_dataset("tips")
sns.barplot(x="day", y="total_bill", data=tips)
# 移除邊框
sns.despine()
plt.show()
在上面的示例中,首先創(chuàng)建了一個(gè)示例圖表,然后使用sns.despine()函數(shù)移除了圖表的邊框。最后通過plt.show()函數(shù)顯示圖表。如果需要移除其他邊框,可以在sns.despine()函數(shù)中指定參數(shù),例如sns.despine(left=True, bottom=True)表示同時(shí)移除左側(cè)和底部的邊框。