# 최초 생성 이후 mode는 append; 새로운 시트를 추가합니다.
if not os.path.exists('output.xlsx'):
with pd.ExcelWriter('output.xlsx', mode='w', engine='openpyxl') as writer:
df.to_excel(writer, index=False)
else:
with pd.ExcelWriter('output.xlsx', mode='a', engine='openpyxl') as writer:
df.to_excel(writer, index=False)
'자주 쓰는 데이터 분석 코드' 카테고리의 다른 글
판다스에 컬럼, 데이터 입력하기 by loc (0) | 2021.09.14 |
---|---|
판다스 - 필요한 데이터, 컬럼 필터링 (0) | 2021.09.11 |
결측값 처리 : dropna, fillna (0) | 2021.07.10 |
쥬피터 노트북 셀 너비 100%까지 보는 코드 (0) | 2021.07.09 |
matplotlib 한글 폰트 깨질 때 대처법 (0) | 2021.07.09 |