1. 컬럼명 rename

(예시)

 

2. 컬럼 순서 재배치 : sort_index, reindex

알파벳 이름순으로 재배치 : train.sort_index(axis=1)

특정 기준에 의해 재배치 : train.reindex(sorted(train.columns), axis=1)

 

 

+ Recent posts