Boxplot
- 데이터의 각 종류별로 사분위 수(quantile)를 표시하는 plot.
- 특정 데이터의 전체적인 분포를 확인하기 좋은 시각화 기법입니다.
- box와 전체 range의 그림을 통해 outlier를 찾기 쉽습니다. (IQR : Inter-Quantile Range)
# penguin 데이터에 boxplot을 출력합니다.
#sns.boxplot(data=penguins, x="flipper_length_mm", y="species", hue="species")
#sns.boxplot(data=penguins, x="body_mass_g", y="species", hue="species")
#sns.boxplot(data=penguins, x="body_mass_g", y="species", hue="sex")
sns.boxplot(data=penguins, y="body_mass_g", x="species", hue="sex")
'빅데이터 분석가 양성과정 > Python' 카테고리의 다른 글
Seaborn - Penguins Dataset ( Lineplot ) (0) | 2024.07.06 |
---|---|
Seaborn - Penguins Dataset ( Violinplot ) (0) | 2024.07.06 |
Seaborn - Penguins Dataset ( Countplot ) (0) | 2024.07.06 |
Seaborn - Penguins Dataset ( Barplot ) (0) | 2024.07.06 |
Seaborn - Penguins Dataset ( Displot ) (0) | 2024.07.06 |