程序报出"TypeError: reduction operation ‘argmax’ not allowed for this dtype"错误是说明数据类型不对和argmax方法已被弃用,改用idxmax
解决方式:
1,使用idxmax
2,检查数据类型是否是数值型如(integer, float).如果是object。则使用
.astype(数值型).idxmax()
如:
results_table['1'].astype(float).idxmax()
程序报出"TypeError: reduction operation ‘argmax’ not allowed for this dtype"错误是说明数据类型不对和argmax方法已被弃用,改用idxmax
解决方式:
1,使用idxmax
2,检查数据类型是否是数值型如(integer, float).如果是object。则使用
.astype(数值型).idxmax()
如:
results_table['1'].astype(float).idxmax()