[seaborn] 그래프 설정
seaborn을 통해 데이터의 시각화 분석을 할 때 조정할 수 있는 설정을 보자. seaborn 호출 %matplotlib inline import seaborn as sns 그래픽 스타일 설정 style whitegrid darkgrid sns.set(style='whitegrid') 그래프 사이즈 설정 import matplotlib.pyplot as plt plt.figure(figsize=(15, 5))
2020.02.05