편리한 시각화 도구 Seaborn
아래의 모든 내용은 파이썬으로 데이터 주무르기(저자 민형기)의 예시를 사용했습니다. ▶ 몇 개의 사인 함수 그리기 import matplotlib.pyplot as plt %matplotlib inline import seaborn as sns x = np.linspace(0, 14, 100) y1 = np.sin(x) y2 = 2*np.sin(x+0.5) y3 = 3*np.sin(x+1.0) y4 = 4*np.sin(x+1.5) plt.figure(figsize=(10,6)) plt.plot(x,y1, x,y2, x,y3, x,y4) plt.show() ▶ Seaborn의 white 스타일 지원 sns.set_style("white") plt.figure(figsize=(10,6)) plt.plot(x..
2019. 9. 19.