pointplot은 Catrgorical변수에 따라 다른 변수가 어떻게 변화하는지를 효과적으로 나타낸다.
이때 점 추정치 중심으로 95% 신뢰구간이 표현 된다.
catplot
에서 kind=
인자에 ‘point’를 넣어서 사용!
sns.catplot(data=titanic, x="sex", y="survived", hue="class",
kind="point")
이때, marker=
인자와 linestyles
인자를 이용해 선과 점의 형태를 변경할 수 있다.
sns.catplot(
data=titanic, x="class", y="survived", hue="sex",
palette={"male": "g", "female": "m"},
markers=["^", "o"], linestyles=["-", "--"],
kind="point"
)
palette
인자로 색을 추가로 바꿔줬다.