1. 컬럼 값 분포 확인하기
df_grade.value_counts( )
컬럼별 빈도수를 출력해준다.
df_grade.value_counts(1)
컬럼별 빈도수의 비율을 출력해준다.
2. 정렬하기
1) 지정한 값으로 정렬하기: sort_values
sort_values(by = ['기준1', '기준2], ascendig = [False, True]): 값을 기준으로 정렬
default는 오름차순이다.
df_grade.sort_values(by = "학점", ascending=False)
df_grade.sort_values(by = ["학점", "이름"], ascending= [False, True])
# ascending = true: 오름차순 // ascending = false: 내림차순
2) 인덱스로 정렬하기: sort_index
df_grade.sort_index
'Python > Pandas' 카테고리의 다른 글
[Python] Pandas - 10. 구간 나누기(cut, qcut) (0) | 2022.10.26 |
---|---|
[Python] Pandas - 9. dt접근(datetime) (0) | 2022.10.26 |
[Python] Pandas - 7. 데이터프레임 원하는 값만 출력하기 (0) | 2022.10.26 |
[Python] Pandas - 6. 데이터프레임 컬럼/행 추가, 변경, 삭제 (0) | 2022.10.26 |
[Python] Pandas - 5. 데이터프레임 출력, 타입, 전치, 미리보기, 기술통계, 통계값(집계/상관계수 등) (0) | 2022.10.26 |
댓글