脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - 浅谈Series和DataFrame中的sort_index方法

浅谈Series和DataFrame中的sort_index方法

2021-03-02 00:18有一种宿命叫无能为力 Python

今天小编就为大家分享一篇浅谈Series和DataFrame中的sort_index方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

Series 的 sort_index(ascending=True) 方法可以对 index 进行排序操作,ascending 参数用于控制升序或降序,默认为升序。

若要按值对 Series 进行排序,当使用 .order(na_last=True, ascending=True, kind='mergesort') 方法,任何缺失值默认都会被放到 Series 的末尾。

DataFrame 上,.sort_index(axis=0, by=None, ascending=True) 方法多了一个轴向的选择参数与一个 by 参数,by 参数的作用是针对某一(些)列进行排序(不能对行使用 by 参数)。

注意在使用sort_index对DataFrame进行排序的时候,不能直接对index和columns都含有的字段进行排序,会报错。

以上这篇浅谈Series和DataFrame中的sort_index方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/You_are_my_dream/article/details/70586915

延伸 · 阅读

精彩推荐