在python的pandas库中,Series 是一个类似于带有标签或者索引数组的数据结构,如果想要对series排序,可以通过两种形式进行排序,即使用sort_index方法通过索引进行排序和使用sort_values方法通过值进行排序。
方法一:series使用sort_index方法通过索引进行排序
使用格式
series.sort_index()
具体实例
frompandasimportDataFrame,Series #####Series按索引排序sort_index方法返回新对象 obj=Series([1,3,2,5,6],index=list('dabce')) obj.sort_index() obj.sort_index(ascending=False)
方法二:series使用sort_values方法通过值进行排序
使用格式
series.sort_values()
具体实例
frompandasimportDataFrame,Series #####Series按值排序sort_values方法返回新对象 obj.sort_values() obj.sort_values(ascending=False)
以上就是python中series排序的两种方法,大家可以根据具体内容通过索引或者值进行排序哦~更多python学习推荐:python教程。