나는야 데이터사이언티스트/PYTHON

[Python] DataFrame 특정 컬럼만 type 바꾸기

우주먼지의하루 2022. 10. 18. 00:02
728x90



DataFrame에서 특정 컬럼만 데이터 형식(type) 바꾸고 싶을때 !

#type 바꾸기
df = df.astype("int")


#특정 컬럼만 type 바꾸기
df = df.astype({"column_1":"string","column_2":"float","column_3":"int"})

반응형