본문 바로가기
Python/Pandas

[Python] DataFrame 문자열 데이터를 숫자 데이터로 바꾸는 법 pd.to_numeric() , astype()

by dong_su 2023. 11. 18.

방법 1 : pd.to_numeric() 함수 사용

-> pd.to_numeric(문자데이터)

 

방법 2 : astype() 함수 사용

-> 문자데이터.astype( int 또는 float )