최근 포스트

14_Visualization_Matplotlib_Seaborn_3

1 분 소요

# 산점도, 관계 그래프 그리기 - 색상 추가 sns.lmplot(x = "total_bill", y = "tip", data = tips, hue = "sex", fit_reg = False) sns.pairplot(tips, hue = "sex")

14_Visualization_Matplotlib_Seaborn_2

1 분 소요

# bar 그래프는 batplot() 메소드로 만들 수 있다. # bar 그래프는 지정한 데이터의 평균을 계산해서 작성된다. ax = plt.subplots() ax = sns.barplot(x = "time", y = "total_bill", data = tips) ax.set_...

14_Visualization_Matplotlib_Seaborn_1

7 분 소요

import warnings warnings.filterwarnings("ignore") from IPython.display import Image import numpy as np import pandas as pd import matplotlib.pyplot as plt pl...

13_Visualization_Anscombe

2 분 소요

```python import warnings warnings.filterwarnings(‘ignore’) from IPython.display import Image import numpy as np import pandas as pd

12_matplotlib

2 분 소요

import warnings warnings.filterwarnings('ignore') from IPython.display import Image import numpy as np import pandas as pd import seaborn as sns