1. Seaborn 라이브러리 : matplotlib도 그래프를 그려주지만, Seaborn 라이브러리는 통계적 분석이 필요한 경우에 더더욱 많이 사용함 그릴 수 있는 그래프 : boxplot, distplot(히스토그램), lmplot(회귀선), heatmap(히트맵), pairplot 등 2.
Seaborn으로 그래프를 그리기 전에, 한글 폰트 깨짐을 방지해주는 코드를 넣는다. import platform path = "c:/Windows/Fonts/malgun.ttf" from matplotlib import font_manager, rc if platform.system() == 'Darwin': rc('font', family='AppleGothic') elif platform.system() == 'Windows': font_name = font_manager.FontProperties(fname=path).get_name() rc('font', family=font_nam...
#
matplotlib
#
파이썬
#
파데쥬
#
코딩
#
데이터사이언스
#
데이터분석
#
데이터
#
seaborn
#
pandas
#
프로그래밍