데이터 과학데이터 전처리Python pandas 데이터 확인, 정렬, 선택하는 법데이터 준비 2단계Last Updated 2024-08-26Published 2022-04-27pandas 사용법Python Pandas 기초8분목차확인하기(Viewing)1) 자료구조: type2) 생김새: shape, head, tail, sample3) 정보: info4) 요약 통계값: describe5) 값: values6) 결측치: isnull, notnull정렬하기(Aligning)1) 값: sort_values2) 순위: rank선택하기(Selecting)1) 대괄호 []2) 쌍점(:)3) loc4) iloc5) 조건6) 문자열: startswith, endswith, contains7) 유일값: unique, nunique8) 빈도수: value_counts9) 그룹별 순서: groupby + cumcount