- jointplot
- pairplot
- FacetGrid
hue
를 사용하여 구분 가능kind
를 활용하여 다양한 종류의 분포 확인 가능scatter, kde, hist, reg
auto, hist, kde, None
corner = True
활용해서 대칭 정보를 지울 수 있음catplot
: Categoricaldisplot
: Distributionrelplot
: Relationallmplot
: Regressioncatplot 관련 방법론
Categorical scatterplots:
stripplot()
(kind="strip"
; the default)swarmplot()
(kind="swarm"
)Categorical distribution plots:
boxplot()
(kind="box"
)violinplot()
(kind="violin"
)boxenplot()
(kind="boxen"
)Categorical estimate plots:
pointplot()
(kind="point"
)barplot()
(kind="bar"
)countplot()
(kind="count"
)행과 열을 조정하는 것이 중요
-> 각 행과 열의 category를 기반으로 그래프의 개수가 조정됨
histplot()
(kind="hist"
; the default)kdeplot()
(kind="kde"
)ecdfplot()
(kind="ecdf"
; 단일변수에서만 사용 가능)scatterplot()
(kind="scatter"
; the default)lineplot()
(kind="line"
)regplot()
방법론 사용 가능