본문 바로가기
판다스/함수 cheat sheet

[pandas] sort_index

by 김판다t 2023. 2. 6.

데이터프레임이나 시리즈의 인덱스(index & columns)를 정렬하는 함수

 

 

import pandas as pd
s = pd.Series([1, 2, 3, 4], index=list('ACBD'))

 

 

 

 

 

pandas sort_index

 

df.sort_index(axis=0, level=None, ascending=True)

 

 

axis (0 or 1 / 기본값은 0)

index를 정렬할 것인지 columns를 정렬할 것인지 지정하는 매개변수.

 

level (level의 로케이션  or 인덱스명)

멀티 인덱스일 때 정렬할 인덱스의 level을 지정하는 매개변수.

 

ascending (bool or bool의 리스트 / 기본값은 True)

오름차순인지 내림차순인지 결정하는 매개변수. 기본값은 오름차순이다

 

 

 

그외 많은 매개변수들이 있다. 더 궁금하면 아래 링크를 참고

https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.sort_index.html

'판다스 > 함수 cheat sheet' 카테고리의 다른 글

[pandas] to_numeric  (0) 2023.02.08
[pandas] apply  (0) 2023.02.07
[pandas] value_counts  (0) 2023.02.06
[pandas] cut  (0) 2023.02.04
[pandas] mask  (0) 2023.02.04