股票

AttributeError: ‘DataFrame’ object has no attribute ‘sort’

学习pandas的时候,对结构进行按值排序

df.sort(columns=’B’)

上报了告警:

AttributeError: ‘DataFrame’ object has no attribute ‘sort’

原来是在 pandas 在版本 0.17.0之后进行了更新,不再有sort,而是用 sort_values 替代

用法为:

df.sort_values([‘B’], ascending=True)

表示对 B 列进行排序,True 表示从小到大。

打赏
原文链接:,转发请注明来源!

发表评论