728x90
다음과 같이 setting해주면 한글이 제대로 나타난다.
import seaborn as sns
sns.set_theme(font="Malgun Gothic",
rc={"axes.unicode_minus":False},
style='darkgrid')
ax = sns.scatterplot(x='kcal per g', y='대분류', data=kcal_df)
UPDATED 2024.07.23
Mac에서는 font로 "AppleGothic"을 사용하면 된다.
728x90
'Temp' 카테고리의 다른 글
[Anaconda] 안쓰는 패키지 정리 (0) | 2021.11.26 |
---|---|
[Git] Reset (0) | 2021.11.25 |
[Python] 파일 or 폴더 복사 (0) | 2021.11.25 |
모든 python process 종료 (0) | 2021.11.23 |
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb4 in position 0: invalid start byte (0) | 2021.11.23 |