+) 한글 폰트 사용하기 from matplotlib import font_manager, rc # 폰트 세팅을 위한 모듈 추가font_path = "C:/Windows/Fonts/malgun.ttf" # 사용할 폰트명 경로 삽입font = font_manager.FontProperties(fname = font_path).get_name()rc('font', family = font)1. boxplot 데이터 분포를 요약해 시각화한 그래프 중앙값, 사분위수, 이상치를 한 눈에 확인 가능 막대가 길다 = 분산이 크다 | 막대가 짧다 = 안정적import pandas as pdimport matplotlib.pyplot as pltdf_score = pd.DataFrame({ 'name': ['홍..