인덱스
pandas dataframe 이미지 테이블 export시 style로 멀티 인덱스 보이지 않게 하기
https://pandas.pydata.org/docs/reference/api/pandas.io.formats.style.Styler.hide.html pandas.io.formats.style.Styler.hide — pandas 2.1.4 documentation Warning This method only works with the output methods to_html, to_string and to_latex. Other output methods, including to_excel, ignore this hiding method and will display all data. This method has multiple functionality depending upon the combin..
파이썬 데이터프레임 dataframe 특정 인덱스 행을 마지막으로 옮기기
index_name = "a" temp = df.loc[index_name].copy() # 해당 인덱스 명으로 접근해서 복사 df.drop(index_name, inplace=True) # 기존 index_name 을 가진 행 삭제 df.loc[len(df)] = temp # 행 의 개수로 마지막 행에 temp를 추가 df.index.values[len(df) - 1] = "a" # index 명을 a로 변경