Seaborn Seaborn은 Matplotlib의 기능과 스타일을 확장한 파이썬 시각화 도구의 고급 버전입니다. 비교적 단순한 인터페이스의 제공으로 초심자에게도 어렵지 않습니다. Anaconda 설치시 함께 설치됩니다. ▶ 불러오기 import seaborn as sns ▶ 그래프 생성 fig = plt.figure(figsize=(15,5)) ax1 = fig.add_subplot(1,2,1) ax2 = fig.add_subplot(1,2,2) sns.regplot(x='age', y='fare', data=titanic, ax=ax1, order=2) # order : 다항회귀 sns.regplot(x='age', y='fare', data=titanic, ax=ax2, fit_reg=False) ..