码迷,mamicode.com
首页 > 编程语言 > 详细

pandas-排序

时间:2020-01-13 15:56:45      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:dataframe   ges   pre   asc   ram   randn   panda   das   mic   

 

#2种排序一种是按标签一种是按值

#按标签排序
unsorted_df=pd.DataFrame(np.random.randn(10,2),index=[1,4,6,2,3,5,9,8,0,7],columns=[col2,col1])
print (unsorted_df)
unsorted_df=unsorted_df.sort_index()
print (unsorted_df)

技术图片

 

 

 

 

 

#按值排序
sorted_df = pd.DataFrame({col1:[2,1,1,1],col2:[1,3,2,4]})
print (sorted_df)
sorted_df = sorted_df.sort_values(by=col1,kind=mergesort,ascending=True)
print (sorted_df)

 

 技术图片

pandas-排序

标签:dataframe   ges   pre   asc   ram   randn   panda   das   mic   

原文地址:https://www.cnblogs.com/JinweiChang/p/12187595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!