Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Pandas DataFrame sort_index() 方法

❮ DataFrame 参考


示例

按索引标签对 DataFrame 进行排序

import pandas as pd

data = {
  "age": [50, 40, 30, 40, 20, 10, 30],
  "qualified": [True, False, False, False, False, True, True]
}

idx = ["Mary", "Sally", "Emil", "Tobias", "Linus", "John", "Peter"]
df = pd.DataFrame(data, index = idx)

newdf = df.sort_index()
自己试试 »

定义和用法

The sort_index() 方法根据索引对 DataFrame 进行排序。


语法

dataframe.sort_index(axis, level, ascending, inplace, kind, na_position, sort_remaining, ignore_index, key)

参数

参数为 关键字参数

参数 描述
axis 0
1
'index'
'columns'
可选。默认值 0。指定要排序的轴
level 字符串
数字
字符串/数字列表
可选。默认值 None。指定要排序的索引级别
ascending True
False
可选,默认为 True。指定是升序排序 (0 -> 9) 还是降序排序 (9 -> 0)
inplace True
False
可选,默认为 False。指定是否对原始 DataFrame 执行操作,如果不是,即默认为否,此方法将返回一个新的 DataFrame
kind 'quicksort'
'mergesort'
'heapsort'
可选,默认为 'quicksort'。指定排序算法
na_position 'first'
'last'
可选,默认为 'last'。指定如何处理 NULL 值。'first' 表示将它们放在前面,'last' 表示将它们放在后面。
sort_remaining True
False
可选,默认为 True。指定是否也按其他级别排序,或不排序
ignore_index True
False
可选,默认为 False。指定是否忽略索引。如果为 True,则忽略原始索引,并替换为 0、1、2 等。
key 函数 可选,指定在排序前执行的函数

返回值

一个包含排序结果的 DataFrame,如果 inplace 参数设置为 True,则返回 None。


❮ DataFrame 参考

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.