Pointplot
- 특정 수치 데이터를 error bar와 함께 출력해주는 plot.
- 수치 데이터를 다양한 각도에서 한 번에 바라보고 싶을 때 사용합니다.
- 데이터와 error bar를 한 번에 찍어주기 때문에, 살펴보고 싶은 특정 지표들만 사용하는 것이 좋습니다.
# penguin 데이터에 pointplot을 출력합니다.
#sns.pointplot(data=penguins, y="flipper_length_mm", x="sex", hue="species")
sns.pointplot(data=penguins, y="bill_length_mm", x="sex", hue="species")
'빅데이터 분석가 양성과정 > Python' 카테고리의 다른 글
Seaborn - Penguins Dataset ( Pairplot ) (0) | 2024.07.08 |
---|---|
Seaborn - Penguins Dataset ( Scatterplot ) (0) | 2024.07.08 |
Seaborn - Penguins Dataset ( Lineplot ) (0) | 2024.07.06 |
Seaborn - Penguins Dataset ( Violinplot ) (0) | 2024.07.06 |
Seaborn - Penguins Dataset ( Boxplot ) (0) | 2024.07.06 |