如下所示:
1
2
3
4
|
import pandas as pd
df = pd.DataFrame([ 1 , 2 , 3 , 4 , 5 ], index = [ 10 , 52 , 24 , 158 , 112 ], columns = [ 'S' ])
df.sort_index(inplace = True )
print df
|
以上这篇pandas通过索引进行排序的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/yj1499945/article/details/53204205