Machine Learning

[PANDAS] DataFrame -> CSV 파일로 저장하기

Scarlett_C 2021. 8. 15. 21:37
728x90

DataFrame을 CSV 파일로 저장하는 방법

New_df.to_csv('파일명or파일경로')
New_df.to_csv('파일명or파일경로', encoding='cp949') ## 한글이 포함된 경우 엑셀을 위한 인코딩

CSV 파일을 DataFrame으로 불러오는 방법

readed_df=pd.read_csv('파일명 or 파일경로')
readed_df=pd.read_csv('파일명 or 파일경로', encoding='cp849', index_col=0) #encoding 지정하여 한글이 포함된 파일 불러오기

index_col 값이 없으면 모두 column 값으로 입력된다.

index는 임의값(0,1,2,...) 으로 정의된다

728x90