我遇到此错误:
TypeError:“系列”对象是可变的,因此不能进行散列处理
在我的df上使用get_dummies
时。
几天前我尝试此操作时,它正在工作。我想对我在代码中编写的列进行编码。
df_new_dummies = pd.get_dummies(df_new, columns=['knockout_match', 'game_season', 'date_of_game', 'home/away', 'lat/lng', 'type_of_shot', 'match_id'], prefix_sep='_', drop_first=True)