Pandas astype()

1 개요[ | ]

Pandas astype()
import pandas as pd

# 데이터프레임 생성
df = pd.DataFrame({'col1': [1, 2], 'col2': [3, 4]})
df
df.dtypes
# 모든 컬럼을 int32로 형 변환
df.astype('int32').dtypes
# 딕셔너리를 사용하여 col1을 int32로 형 변환
df.astype({'col1': 'int32'}).dtypes

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}