Pandas DataFrame : 데이터 행,열 바꾸는 방법들
https://www.delftstack.com/ko/howto/python-pandas/how-to-change-the-order-of-dataframe-columns/ Pandas DataFrame 열의 순서를 변경하는 방법이 자습서에서는 insert, re_index 및 new list를 사용하여 DataFrame 열의 순서를 변경하는 방법을 보여줍니다.www.delftstack.com df = df.reindex(columns=['a','f','d','b','c','e'])1번 방식 가장 간단df = df[['가','라','나','다']] 2번 reindex 사용df = df.reindex(columns=['가','라','나','다'] 이건 행에도 가능하다 df = df.reindex(index..
2022. 7. 2.