- df.describe() : count/mean/std/min/quartile/max 등의 기술통계량 확인
'Code Cloud > python' 카테고리의 다른 글
[pandas] 새로운 데이터 프레임 구성 df=[ [ '컬럼명1','컬럼명2'... ] ] (0) | 2021.12.21 |
---|---|
[pandas] 추출한 데이터프레임의 인덱스 제거 reset_index(drop= ) (0) | 2021.12.21 |
[pandas] 특정 조건에 맞는 데이터 추출 df[df['컬럼명']==3] (0) | 2021.12.21 |
[pandas] 특정 컬럼의 유일값 찾기 df.컬럼명.unique() (0) | 2021.12.21 |
특정 자료형을 가진 데이터 출력 df.select_dtypes(exclude=object) (0) | 2021.12.21 |