Pandas

[Pandas / 기초] 판다스 데이터확인 - describe, info, head, tail, values, index, columns, shape, astype, cat, to_numeric, cut, qcut

씨주 2024. 1. 10. 05:54

📍 DataFrame 데이터 확인

 

 

: df.describe(include='object')

  categorical column(문자열 column) 요약 통계 확인 가능

 

 

✅ info()

: 데이터의 각 특성에 대한 전반적인 정보 확인

✅ head(n)

: 상위 n개의 데이터프레임 확인

 

✅ tail(n)

: 하위 n개의 데이터프레임 확인

 

✅ values

: 데이터프레임값 추출

  반환타입은 numpy array

 

✅ index

: 데이터프레임 index 추출

 

✅ columns

: 데이터프레임 columns 추출

 

✅ shape

: (행, 열) 튜플형태로 출력

 

✅ astype

: int32, float32, str(object), category 등으로 type 변경

 

: df.cat.rename_categories([rename_list])

  카테고리의 이름을 재지정