Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Seaborn / Matplotlib 플롯에서 X축 레이블을 제거하거나 숨기는 방법은 무엇입니까?

<시간/>

Seaborn/Matplotlib 플롯에서 X축 레이블을 제거하거나 숨기려면 다음 단계를 수행할 수 있습니다. -

  • Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.

  • sns.set_style() 사용 Seaborn 줄거리의 미적 스타일을 설정합니다.

  • 온라인 리포지토리에서 예제 데이터세트를 로드합니다(인터넷 필요).

  • X축 레이블을 숨기거나 제거하려면 set(xlabel=None)을 사용하세요. .

  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

from matplotlib import pyplot as plt
import seaborn as sns

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

sns.set_style("whitegrid")
tips = sns.load_dataset("tips")

ax = sns.boxplot(x="day", y="total_bill", data=tips)
ax.set(xlabel=None)

plt.show()

출력

Seaborn / Matplotlib 플롯에서 X축 레이블을 제거하거나 숨기는 방법은 무엇입니까?