728x90
regplot
python seaborn의 regplot은 scatter plot과 line plot을 함께 볼 수 있는 데이터 시각화 방법입니다.
사용방법 : https://seaborn.pydata.org/generated/seaborn.regplot.html
lmplot
lmplot은 regplot + facegrid를 합친 것으로 regplot을 여러개 보고싶을 때 사용하면 됩니다.
사용방법 : https://seaborn.pydata.org/generated/seaborn.lmplot.html
catplot
숫자형 변수와 하나 이상의 범주형 변수의 관계를 보여주는 함수입니다.
Categorical scatterplots | Categorical distribution plots | Categorical estimate plots |
- stripplot() (with kind="strip"; the default) - swarmplot() (with kind="swarm") |
- boxplot() (with kind="box") - violinplot() (with kind="violin") - boxenplot() (with kind="boxen") |
- pointplot() (with kind="point") - barplot() (with kind="bar") - countplot() (with kind="count") |
사용방법 : https://seaborn.pydata.org/generated/seaborn.catplot.html
relplot
두 변수 간의 관계를 보여줄 때 사용하는 seaborn 그래프입니다.
scatter, line 으로 볼 수 있네요.
사용방법 : https://seaborn.pydata.org/generated/seaborn.relplot.html
반응형
'나는야 데이터사이언티스트 > PYTHON' 카테고리의 다른 글
[Python]데이터분석 EDA 쉽게 하기 - pandas_profiling (0) | 2020.06.11 |
---|---|
[Python] 결측치 시각화 하기 - missingno 종류 (0) | 2020.06.06 |
[Python]문자열 양 끝 공백 또는 문자 제거 - strip(),lstrip(),rstrip() (0) | 2020.05.11 |
[Python]matplotlib, dataframe 한글 폰트 설정 방법 (0) | 2020.05.10 |
[Python]Dataframe에서 like 검색-str.startswith() , str.contains() (0) | 2020.05.04 |