Computer >> Máy Tính >  >> Lập trình >> Python

Python Pandas - Trả về bản sao chỉ mục được sắp xếp theo thứ tự giảm dần

Để trả về bản sao chỉ mục đã được sắp xếp, hãy sử dụng index.sort_values ​​() trong Pandas. Tham số tăng dần được đặt Sai .

Đầu tiên, hãy nhập các thư viện được yêu cầu -

import pandas as pd

Tạo chỉ mục Pandas -

index = pd.Index([50, 10, 70, 95, 110, 90, 30])

Hiển thị chỉ mục Gấu trúc -

print("Pandas Index...\n",index)

Sắp xếp các giá trị chỉ mục. Để sắp xếp các giá trị theo thứ tự Giảm dần, hãy đặt tham số "tăng dần" thành "Sai" -

print("\nSort the index values in descending order...\n",index.sort_values(ascending=False))

Ví dụ

Sau đây là mã -

import pandas as pd

# Creating Pandas index
index = pd.Index([50, 10, 70, 95, 110, 90, 30])

# Display the Pandas index
print("Pandas Index...\n",index)

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# Return the dtype of the data
print("\nThe dtype object...\n",index.dtype)

# Sort index values
# To sort values in Descending order, set the "ascending" parameter to "False"
print("\nSort the index values in descending order...\n",index.sort_values(ascending=False))

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Pandas Index...
Int64Index([50, 10, 70, 95, 110, 90, 30], dtype='int64')

Number of elements in the index...
7

The dtype object...
int64

Sort the index values in descending order...
Int64Index([110, 95, 90, 70, 50, 30, 10], dtype='int64')