728x90
DataFrame에서 특정 컬럼만 데이터 형식(type) 바꾸고 싶을때 !
#type 바꾸기
df = df.astype("int")
#특정 컬럼만 type 바꾸기
df = df.astype({"column_1":"string","column_2":"float","column_3":"int"})
반응형
'나는야 데이터사이언티스트 > PYTHON' 카테고리의 다른 글
[Python]DataFrame N등분 하기, DataFrame 분할 (0) | 2024.03.27 |
---|---|
[Python]Python hive JDBC 연결하기 (0) | 2023.03.22 |
[Python] 마지막 날짜 얻기, 마지막 날짜 계산하기 (0) | 2022.09.08 |
[Python]Not a feather file Error (0) | 2022.09.06 |
[Python] 코드 실행 시간 확인하기 (0) | 2022.09.01 |