df = df.dropna(subset='Date of Birth')
astype
int, float, str
df['Height'] = df['Height'].astype(str)
df['Height'] = df['Height'].astype('str')
'파이썬. 데이터분석 > Pandas' 카테고리의 다른 글
df['칼럼명'].map('매핑 정보') - 값 치환, 대체 (2) | 2024.10.03 |
---|---|
datetime 날짜형으로 변환 pd.to_datetime, pd.to_timedelta (1) | 2024.09.28 |
SettingWithCopyWarning 알람 원인, 끄기 (0) | 2024.09.28 |
numeric, categorical 나누는 순환문 코드 (0) | 2024.09.21 |
컬럼 값에 따라 조건 변경 if문 없이 (1) | 2024.09.16 |