[시각화/과제] pandas 시각화 미니과제 - Seaborn 실습
😏 h&m 고객 데이터를 가지고 시각화 실습 : 미니과제를 풀어보자!! ▶ 사전 준비 과정 → 라이브러리 임포트 | 한글 인코딩 해결 | 데이터 불러오기# 공통 셋업import pandas as pdimport seaborn as snsimport matplotlib.pyplot as pltplt.rcParams["font.family"] = "AppleGothic" # windowsms Malgun Gothic 권장plt.rcParams["axes.unicode_minus"] = False%matplotlib inline# 데이터 로드hm_path = "customer_hm.csv"hm = pd.read_csv(hm_path)hm.head()문제1. 멤버 상태별 고객 수질문) 멤버 상태별 고객 수는..