티스토리 뷰

- 만들어진 dataframe의 여러 column을 index로 설정하는 경우

df.set_index(['year', 'month']) # 'year', 'month'는 각각 column 명

 

- 엑셀 쓸 때 중복되는 index 혹은 column의 셀 합쳐지지 않도록 하는 방법 :  merge_cell=False

df.to_excel('example.xlsx',merge_cells=False)

반응형
댓글