Skip to content
Advertisement

How to sort pandas dataframe in ascending order using Python

I have a dataframe like this :

JavaScript

Columns’ types with print(df.dtypes) :

JavaScript

Expected Output :

JavaScript

I have a dataframe like df. When I do :

JavaScript

But nothing happen even by adding ascending = True or False.

Could you give the way pls to order this dataframe as above ?

If possible can you give the 2 possibilites like ordering by index and date but I’m looking to order by ascending date directly without touching to the index.

EDIT for more clarity :

JavaScript

You have my code above. I’m not able to make the sort method to work correctly.

Advertisement

Answer

Problem is if modify values in loop there is no change if original list, you can assign ouput to original list of DataFrames like:

JavaScript

Another idea is use inplace=True:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement