전처리 - excel 저장 확인하는 법

류소리·2023년 1월 6일
0

전처리

목록 보기
2/11

excel 파일 불러오는 법

  • import pandas as pd
  • pd.read_excel("파일저장.xlsx")

이미 있는 .xlsx 파일 지우기.

  • !rm *.xlsx

파일 업로드, 여러개 선택 가능.

  • from google.colab import files
  • uploaded = files.upload()

for으로 여러파일 불러오기.

  • for fn in uploaded.keys():
    workbook=pd.read_excel(fn)

파일 다운로드

  • with pd.ExcelWriter('파일 이름') as writer:
    데이터.to_excel(writer, sheet_name='저장하고 싶은 sheet 이름')
  • files.download('파일 이름')

출처: https://arumyworld.tistory.com/7

profile
새싹 빅테이터 개발자

0개의 댓글