티스토리 뷰
데이터 로드 및 구조 확인
from matplotlib import font_manager, rc
import platform
if platform.system() == 'Windows':
path = 'c:/Windows/Fonts/malgun.ttf'
font_name = font_manager.FontProperties(fname = path).get_name()
rc('font', family = font_name)
elif platform.system() == 'Darwin':
rc('font', family = 'AppleGothic')
else:
print('Check your OS system')'LG U+ Why Not SW 부트캠프 5기' 카테고리의 다른 글
| 파이썬 기반 웹 크롤링 & 시각화 프로젝트: Selenium + Folium 사례 (1) | 2025.02.20 |
|---|---|
| 웹 스크래핑과 유튜브 데이터 분석을 활용한 데이터 수집 및 시각화 (0) | 2025.02.18 |
| 의료 데이터 분석과 웹 크롤링을 활용한 데이터 수집 (0) | 2025.02.17 |
| 데이터 분석의 핵심 개념과 실전 활용 (1) | 2025.02.14 |
| Python 기초 개념 총정리: 필수 문법과 실전 활용 (0) | 2025.02.11 |
