그래프 한글과 마이너스가 깨짐 설정
Pandas(판다스) 그래프 한글 깨짐 마이너스 깨짐 설정 방법
# Windows : "Malgun Gothic"
# MAC:"AppleGothic"
# seaborn 의 set 기능을 통해 폰트, 마이너스 폰트, 스타일 설정
# Windows : "Malgun Gothic"
# MAC : "AppleGothic"
import seaborn as sns
import matplotlib.pyplot as plt
plt.rc("font", family="Malgun Gothic" )
sns.set(font="Malgun Gothic",
rc={"axes.unicode_minus":False},
style = "darkgrid")
# 한글폰트 설정 확인
pd.Series([2, 1, -1 , -2, 3, 2]).plot(title="한글폰트")
'Python > 데이터전처리' 카테고리의 다른 글
2021년 유투브 워드클라우드 (0) | 2021.02.21 |
---|---|
Pandas 문자열 추출하기 (1) | 2021.02.09 |
Colab 파일 불러 오기 (0) | 2021.01.10 |