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

Matplotlib를 사용하여 Seaborn Bar Plot에서 오류 막대를 끄는 방법은 무엇입니까?

<시간/>

Seaborn 막대 플롯에서 오차 막대를 끄려면 다음 단계를 수행할 수 있습니다.

  • 온라인 리포지토리에서 예제 데이터세트를 로드합니다(인터넷 필요).
  • 점 추정치와 신뢰 구간을 막대로 표시합니다.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import seaborn as sns
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
df = sns.load_dataset('titanic')
sns.barplot(x='class', y='age', hue='survived', data=df, ci=None)
plt.show()

출력

Matplotlib를 사용하여 Seaborn Bar Plot에서 오류 막대를 끄는 방법은 무엇입니까?