본문 바로가기
파이썬. 데이터분석/Pandas

[정리] Pandas 전처리 기본

by 한국수달보호협회장 2024. 9. 28.

 

 

 

 

df = df.dropna(subset='Date of Birth')

 

 

 

astype

int, float, str

df['Height'] = df['Height'].astype(str)
df['Height'] = df['Height'].astype('str')