はじめに
PandasのDataFrameで25,000
のように、3桁ごとにカンマで区切られている文字列を、数値に変更したいとおもい調べました。
コード
df.apply(lambda x: x.str.replace(',','')).astype(np.int)
参考ページ
pandas – some ways to replace part of a string.
ありがとうございました。
他のやり方ありましたら、ご教授頂けるとありがたいです。
Go to list of users who liked
More than 5 years have passed since last update.
PandasのDataFrameで25,000
のように、3桁ごとにカンマで区切られている文字列を、数値に変更したいとおもい調べました。
df.apply(lambda x: x.str.replace(',','')).astype(np.int)
pandas – some ways to replace part of a string.
ありがとうございました。
他のやり方ありましたら、ご教授頂けるとありがたいです。
Register as a new user and use Qiita more conveniently
Go to list of users who liked