时间:2021-05-22
本问主要写根据索引或者值对series和dataframe进行排序的实例讲解
代码:
#coding=utf-8import pandas as pdimport numpy as np#以下实现排序功能。series=pd.Series([3,4,1,6],index=['b','a','d','c'])frame=pd.DataFrame([[2,4,1,5],[3,1,4,5],[5,1,4,2]],columns=['b','a','d','c'],index=['one','two','three'])print frameprint seriesprint 'series通过索引进行排序:'print series.sort_index()print 'series通过值进行排序:'print series.sort_values()print 'dataframe根据行索引进行降序排序(排序时默认升序,调节ascending参数):'print frame.sort_index(ascending=False)print 'dataframe根据列索引进行排序:'print frame.sort_index(axis=1)print 'dataframe根据值进行排序:'print frame.sort_values(by='a')print '通过多个索引进行排序:'print frame.sort_values(by=['a','c'])实验结果:
b a d cone 2 4 1 5two 3 1 4 5three 5 1 4 2b 3a 4d 1c 6dtype: int64series通过索引进行排序:
a 4b 3c 6d 1dtype: int64series通过值进行排序:
d 1b 3a 4c 6dtype: int64dataframe根据行索引进行降序排序(排序时默认升序,调节ascending参数):
b a d ctwo 3 1 4 5three 5 1 4 2one 2 4 1 5dataframe根据列索引进行排序:
a b c done 4 2 5 1two 1 3 5 4three 1 5 2 4dataframe根据值进行排序:
b a d ctwo 3 1 4 5three 5 1 4 2one 2 4 1 5通过两个索引进行排序:
b a d cthree 5 1 4 2two 3 1 4 5one 2 4 1 5[Finished in 1.0s]以上这篇pandas 对series和dataframe进行排序的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1.单列运算在Pandas中,DataFrame的一列就是一个Series,可以通过map来对一列进行操作:df['col2']=df['col1'].map(
前言Pandas是python的一个数据分析包,提供了大量的快速便捷处理数据的函数和方法。其中Pandas定义了Series和DataFrame两种数据类型,这
最近用了pycharm,感觉还不错,就是pandas中Series、DataFrame的plot()方法不显示图片就给我结束了,但是我在ipython里就能画图
pandas可以对不同索引的对象进行算术运算,如果存在不同的索引对,结果的索引就是该索引对的并集。一、算术运算a、series的加法运算s1=Series([1
python中的pandas模块中对重复数据去重步骤:1)利用DataFrame中的duplicated方法返回一个布尔型的Series,显示各行是否有重复行,