gpt4 book ai didi

python - 多索引 - 无法在一行中对多个索引进行排序

转载 作者:行者123 更新时间:2023-12-04 08:51:17 25 4
gpt4 key购买 nike

我正在尝试使用以下代码对 Python 中的多个索引进行排序,这给了我代码下方提供的错误:

raw_data.sort_index(level='employee_id',ascending=False,inplace=True).sort_index(level='PAYCODE_ID',ascending=True,inplace=True)

---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-732-d2ad9fdef0b4> in <module>
----> 1 raw_data.sort_index(level='employee_id',ascending=False,inplace=True).sort_index(level='PAYCODE_ID',ascending=True,inplace=True)

AttributeError: 'NoneType' object has no attribute 'sort_index'
我认为在第一个 'sort_index' 方法之后,python 结果变成了 'None' 对象类型。根据 python 文档,如果 'inplace' 参数设置为 True,则返回对象将是数据帧。
Documentation
还要注意,当我将方法拆分为以下两行代码时,它将排序结果存储到 raw_data 数据帧中:
raw_data.sort_index(level='employee_id',ascending=False,inplace=True)
raw_data.sort_index(level='PAYCODE_ID',ascending=True,inplace=True)

最佳答案

如果您通过 inplace=Truesort_index , 该函数将运行 就地并返回 None .所以要么删除 inplace=True如果你想链接命令,或者像你发布的那样执行两个单独的命令,然后分配回来。
此外,您可以将多个级别传递给 sort_index

raw_data.sort_index(level=['employee_id', 'PAYCODE_ID'],
ascending=[False, True],inplace=True)

关于python - 多索引 - 无法在一行中对多个索引进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64090161/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com