溫馨提示×

Seaborn怎么去除圖表邊框

小億
99
2024-05-17 15:50:13
欄目: 編程語言

要去除Seaborn圖表的邊框,可以使用sns.despine()函數(shù)。這個函數(shù)可以去除圖表的上、右、左或下的邊框,或者去除所有四個邊框。

以下是一個例子:

import seaborn as sns
import matplotlib.pyplot as plt

# 創(chuàng)建一個示例圖表
sns.set(style="whitegrid")
tips = sns.load_dataset("tips")
sns.barplot(x="day", y="total_bill", data=tips)

# 去除所有邊框
sns.despine()

plt.show()

在上面的代碼中,我們使用sns.despine()函數(shù)去除了圖表的所有邊框。你也可以指定要去除的邊框,比如sns.despine(left=True, bottom=True)去除左邊和底部的邊框。

0