Posts [프로그래밍 언어] 파이썬 - Pandas
Post
Cancel

[프로그래밍 언어] 파이썬 - Pandas


Contents



Pandas 자주 사용하는 문법 정리

Read

1
pd.read_csv(filePath, params)

자주 사용하는 params

  • sep = ‘,’
  • header = None (저장된 파일에 header가 따로 없을 때)

write

1
pd.to_csv(filePath, params)

자주 사용하는 params

  • sep = ‘,’
  • header = True
  • index = True
  • encoding = ‘utf-8’


This post is licensed under CC BY 4.0 by the author.