Hayden's Archive

[Python-matplot/seaborn] Seaborn으로 그래프 스타일 입히기 / Boxplot(상자그림) / Boxplot 이상치 값 제거하기 / lmplot / Heatmap 본문

Study/Data

[Python-matplot/seaborn] Seaborn으로 그래프 스타일 입히기 / Boxplot(상자그림) / Boxplot 이상치 값 제거하기 / lmplot / Heatmap

_hayden 2020. 7. 15. 11:11

seaborn은 matplot과 함께 Graph Visualization을 하기 위한 파이썬 API

먼저 seaborn을 쓰기 위해 아래와 같이 import한다.

import seaborn as sns

 

시작하기 전에 아래처럼 기본적으로 적어주면 편함

import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
from pandas import DataFrame, Series
import seaborn as sns

 

seaborn.pydata.org/

 

seaborn: statistical data visualization — seaborn 0.10.1 documentation

Seaborn is a Python data visualization library based on matplotlib. It provides a high-level interface for drawing attractive and informative statistical graphics. For a brief introduction to the ideas behind the library, you can read the introductory note

seaborn.pydata.org

seaborn 사이트에 들어가서 Gallery에 들어가면 다양한 그래프가 있음.

 

머신러닝에서 pairplot 만나게 될 것. 

 

* Seaborn으로 그래프 스타일 입히기

 

 


* Seaborn - Boxplot(상자그림)

 


Boxplot 이상치 값 제거하기

 


* lmplot

 


* Heatmap