pandasでastypeで型変換したい
2021.08.06

TL:DR

個人的に、よく使うのは int, float, category ですね。
python
df['hogehoge'] = df['hogehoge'].astype(int)
df['hogehoge'] = df['hogehoge'].astype(float)
df['hogehoge'] = df['hogehoge'].astype('category')

使用目的

pandas で型を変換、指定したいとき