当前位置:主页 > 软件编程 > Python代码 >

解决DataFrame排序sort的问题

时间:2022-03-22 10:37:07 | 栏目:Python代码 | 点击:

如下所示:

result = result.T.sort(['confidence','support'], ascending = False)

报以下错误:

AttributeError: 'DataFrame' object has no attribute 'sort'

解决方式:

sort_values()即可解决

您可能感兴趣的文章:

相关文章