Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Sorting of DataFrame and Series

2025-04-08 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

For more information on big data's analysis and modeling, please follow the official account "bigdatamodeling".

# # sorting # # from pandas import DataFrame, Series# Series sorts by index the sort_index method returns the new object obj = Series ([1,3,2,5,6] Index=list ('dabce')) obj.sort_index () obj.sort_index (ascending=False) # Series sort by value sort_values method returns a new object obj.sort_values () obj.sort_values (ascending=False) # DataFrame sort by index / column index # default axis=0, row index sort # axis=1, column index sort frame = DataFrame (np.random.randn (4,3), columns=list ('dbe'), index= [' Ut', 'Oh',' Tex', 'Ore']) frame.sort_index () # same as frame.sort_index (axis=0) frame.sort_index (ascending=False) frame.sort_index (axis=1) frame.sort_index (axis=1) Ascending=False) # DataFrame sorts frame = DataFrame by column ({'averse: [1,3,1,5],' baked: [2,1,4,6]}) # sort method but only applies to python2frame.sort (columns= ['averse,' b'], ascending= [True, True]) frame.sort (columns= ['ajar,' b'], ascending= [True, False]) # sort_index method frame.sort_index (by= ['ajar,' b'] Ascending= [True, True]) frame.sort_index (by= ['averse,' b'], ascending= [True, False]) # sort_values method frame.sort_values (by= ['ajar,' b'], ascending= [True, True]) frame.sort_values (by= ['averse,' b'], ascending= [True, False])

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report