📍 Matplotlib : 다양한 형태의 그래프를 통해서 데이터 시각화를 할 수 있는 라이브러리 In [1]: import matplotlib.pyplot as plt ✔️ 한글폰트 설정 In [2]: import matplotlib matplotlib.rcParams['font.family'] = 'Malgun Gothic' # Windows matplotlib.rcParams['font.family'] = 'AppleGothic' # Mac matplotlib.rcParams['axes.unicode_minus']=False # 한글 폰트 사용 시, 마이너스 글자가 깨지는 현상 해결 ✅ 막대 그래프 : plt.bar(x, y, color='color' / [color_list], width=width..