Python Pandas Library sort_values function

27 June 2023 180 Reading time: 17 second

The sort_values function in the Pandas library is used to sort a DataFrame based on a specific column or multiple columns. This function can be used to arrange the data in ascending or descending order.


import pandas as pd

# Sort the DataFrame based on the 'column' column
sorted_df = df.sort_values('column')
print(sorted_df)

Similar articles