如何对 Pandas 系列进行排序?
在这个问题中,我们必须对Pandas系列进行排序。我们将定义一个未排序sort_values()的Pandas系列,并使用Pandas库中的函数对其进行排序。
算法
Step 1: Define Pandas series. Step 2: Sort the series using sort_values() function. Step 3: Print the sorted series.
示例代码
import pandas as pd panda_series = pd.Series([18,15,66,92,55,989]) print("Unsorted Pandas Series: \n", panda_series) panda_series_sorted = panda_series.sort_values(ascending = True) print("\nSorted Pandas Series: \n", panda_series_sorted)输出结果
Unsorted Pandas Series: 0 18 1 15 2 66 3 92 4 55 5 989 dtype: int64 Sorted Pandas Series: 1 15 0 18 4 55 2 66 3 92 5 989 dtype: int64
解释
sort_values()函数中的升序参数采用布尔值。如果值为True,则按升序对系列进行排序。如果值为False,则按降序对值进行排序。