使用get_dummies进行分类功能时遇到类型错误错误

时间:2019-07-21 12:41:11

标签: python categorical-data

我遇到此错误:

  

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)

0 个答案:

没有答案