Violinplot
- 데이터에 대한 분포 자체를 보여주는 plot.
- boxplot과 비슷하지만, 전체 분포에 대한 그림을 보여준다는 점에서 boxplot과 다릅니다.
- 보통 boxplot과 함께 표시하면, 평균 근처에 데이터가 얼마나 있는지(boxplot) 전체적으로 어떻게 퍼져있는지(violinplot) 모두 확인이 가능합니다.
# penguin 데이터에 violinplot을 출력합니다.
#sns.violinplot(data=penguins, y="flipper_length_mm", x="species", hue="species")
sns.violinplot(data=penguins, y="body_mass_g", x="species", hue="sex")
'빅데이터 분석가 양성과정 > Python' 카테고리의 다른 글
Seaborn - Penguins Dataset ( Pointplot ) (0) | 2024.07.08 |
---|---|
Seaborn - Penguins Dataset ( Lineplot ) (0) | 2024.07.06 |
Seaborn - Penguins Dataset ( Boxplot ) (0) | 2024.07.06 |
Seaborn - Penguins Dataset ( Countplot ) (0) | 2024.07.06 |
Seaborn - Penguins Dataset ( Barplot ) (0) | 2024.07.06 |