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

Để trả về bản sao chỉ mục đã được sắp xếp, hãy sử dụng index.sort_values ​​() trong Pandas. Đầ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. Theo mặc định, sắp xếp theo thứ tự Tăng dần -

print("\nSort the index values...\n",index.sort_values())

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
# By default, sorts in Ascending order
print("\nSort the index values...\n",index.sort_values())

Đầ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...
Int64Index([10, 30, 50, 70, 90, 95, 110], dtype='int64')