前提・実現したいこと
pandasのDataFrameの列をastypeで型変換したいと思っています。
現状、変換したい列 df['Genre'] は、ワンホットエンコーディング処理済みで、型は object です。
int64 に変換したいのですが、以下エラーになってしまうので、対処法を教えてください。
発生している問題・エラーメッセージ
python
1KeyError: 'Genre' 2 3The above exception was the direct cause of the following exception: 4 5KeyError Traceback (most recent call last) 6
該当のソースコード
python
1df['Genre'] = df['Genre'].astype('int64')
回答1件
あなたの回答
tips
プレビュー