방법 1 : pd.to_numeric() 함수 사용
-> pd.to_numeric(문자데이터)
방법 2 : astype() 함수 사용
-> 문자데이터.astype( int 또는 float )
'Python > Pandas' 카테고리의 다른 글
[Python] DataFrame 문자 갯수 세는 함수 str.len() (0) | 2023.11.18 |
---|---|
[Python] DataFrame 문자 값을 바꾸고 싶을 때 str.replace() (1) | 2023.11.18 |
[Python] DataFrame 웹에 있는 데이터 이용하는 법 (1) | 2023.11.18 |
[Python] DataFrame 카테고리컬 데이터 처리 함수 unique(), nunique(), count(), groupby() (0) | 2023.11.18 |
[Python] DataFrame 기본적인 통계 데이터들을 보여주는 함수들 describe(), head(), tail(), info(), mean(), min(), max() (1) | 2023.11.18 |