728x90
python matplotlib에서 한글 폰트, 마이너스(숫자)가 안보일 때 설정하는 방법
#한글폰트 설정
#mac ver.
plt.rc("font",family="AppleGothic")
#window ver.
plt.rc("font",family="Malgun Gothic")
#마이너스 숫자 설정
plt.rc("axes",unicode_minus=False)
python dataframe 불러올 때, index가 한글일 경우 설정 방법
df= pd.read_csv("../test.csv",encoding = "cp949")
UTF-8보다 cp949로 하는게 더 좋음 !
반응형
'나는야 데이터사이언티스트 > PYTHON' 카테고리의 다른 글
[Python/seaborn] 데이터 시각화 - regplot, lmplot, catplot, swarmplot (0) | 2020.05.24 |
---|---|
[Python]문자열 양 끝 공백 또는 문자 제거 - strip(),lstrip(),rstrip() (0) | 2020.05.11 |
[Python]Dataframe에서 like 검색-str.startswith() , str.contains() (0) | 2020.05.04 |
[Python]Jupyter Notebook 잘 사용하기 (0) | 2020.04.06 |
[Python]시계열 데이터 모델링 - 기초버전 (0) | 2020.04.05 |