資料排序


#排序單一欄位,由小到大

df_straw_hat.sort_values('age')

#排序單一欄位,由大到小

df_straw_hat.sort_values('age', ascending=False) #使用參數ascending來控制排序方法

#排序多欄位,輸入list當作參數

df_straw_hat.sort_values(['age', 'height'], ascending=[True, False]) #先照年齡由小到大,再排身高由大到小

results matching ""

    No results matching ""