728x90
반응형
SMALL
1. select_dtypes
- 특정 데이터 타입을 가진 열(column)을 선택하는 메서드
df = pd.read_csv('http://bit.ly/ds-korean-idol')
df.select_dtypes(include='object') #dtype이 문자열인 컬럼만 가져오기
df.select_dtypes(exclude='object') #dtype이 문자열인 컬럼만 빼고 컬럼을 가져오기
# 문자열을 가지고 있는 컬럼의 이름만 저장
str_cols = df.select_dtypes(include='object').columns
str_cols
>>> Index(['이름', '그룹', '소속사', '성별', '생년월일', '혈액형'], dtype='object')
df[str_cols] # df.select_dtypes(include='object')
728x90
반응형
LIST
'Python > Data Analysis' 카테고리의 다른 글
[파이썬, Python] Matplotlib - 시각화 라이브러리 (1) | 2023.06.13 |
---|---|
[파이썬, Python] Pandas 모듈 - 🔟 원 핫 인코딩(One Hot Encoding) (0) | 2023.06.13 |
[파이썬, Python] Pandas 모듈 - 8️⃣ 데이터프레임의 산술 연산 (0) | 2023.06.13 |
[파이썬, Python] Pandas 모듈 - 7️⃣ 데이터프레임 함수 적용 하기 apply, map (0) | 2023.06.13 |
[파이썬, Python] Pandas 모듈 - 6️⃣ 데이터프레임 합치기, 등수 매기기 rank(), 날짜 타입(datetime) (0) | 2023.06.12 |