前提・実現したいこと
kaggleでしたのコードを実装したところ、"['game_session'] not found in axis"とエラーが出ましたが、なぜでしょうか?
group_game_time = df.drop(columns=['event_id', 'event_code']).groupby( ['game_session', 'installation_id', 'title', 'type', 'world'] ).max() group_game_time.drop(columns=['game_session', 'event_count', 'game_time'])
reset_index()を追加したところ解決できましたが、理由は不明です。
group_game_time = df.drop(columns=['event_id', 'event_code']).groupby( ['game_session', 'installation_id', 'title', 'type', 'world'] ).max().reset_index() group_game_time.drop(columns=['game_session', 'event_count', 'game_time'])
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/14 03:29