전처리 - 타입 변환 astype()

류소리·2023년 1월 6일
0

전처리

목록 보기
3/11

타입 확인

: dtypes를 통하여 각 column의 타입 살펴 봄,

  • df.dtyps

Series, DataFrame 열을string으로 변환한다.

  • pandas.Series.astype(str)

  • df["score"].astype(str)

  • df["score"].astype(int)

  • df["score"].astype(float)

여러개 칼럼 변환시

  • df[['A','B']].astype(str)
  • df.astype({'A':'int','B':'str'})

출처: https://www.delftstack.com/ko/howto/python-pandas/how-to-convert-pandas-dataframe-column-to-string/

profile
새싹 빅테이터 개발자

0개의 댓글