Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python Pandas - ส่งคืนสำเนาที่จัดเรียงของดัชนีในลำดับจากมากไปน้อย


หากต้องการส่งคืนสำเนาที่จัดเรียงของดัชนี ให้ใช้ index.sort_values() วิธีการในแพนด้า พารามิเตอร์ จากน้อยไปมาก ถูกตั้งค่าเป็น เท็จ .

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

การสร้างดัชนีนุ่น -

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

แสดงดัชนีหมีแพนด้า -

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

จัดเรียงค่าดัชนี ในการเรียงลำดับค่าจากมากไปน้อย ตั้งค่าพารามิเตอร์ "ascending" เป็น "False" -

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

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

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))

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

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')