Lineplot
- 특정 데이터를 x, y로 표시하여 관계를 확인할 수 있는 plot. (선 그래프)
- 수치형 지표들 간의 경향을 파악할 때 많이 사용합니다.
# penguin 데이터에 lineplot을 출력합니다.
#sns.lineplot(data=penguins, x="body_mass_g", y="flipper_length_mm", hue="species")
#sns.lineplot(data=penguins, y="body_mass_g", x="flipper_length_mm", hue="sex")
sns.lineplot(data=penguins, y="bill_length_mm", x="bill_depth_mm", hue="species")
'빅데이터 분석가 양성과정 > Python' 카테고리의 다른 글
Seaborn - Penguins Dataset ( Scatterplot ) (0) | 2024.07.08 |
---|---|
Seaborn - Penguins Dataset ( Pointplot ) (0) | 2024.07.08 |
Seaborn - Penguins Dataset ( Violinplot ) (0) | 2024.07.06 |
Seaborn - Penguins Dataset ( Boxplot ) (0) | 2024.07.06 |
Seaborn - Penguins Dataset ( Countplot ) (0) | 2024.07.06 |