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