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

Python - ค้นหาดัชนีที่ควรแทรกองค์ประกอบเพื่อรักษาความสงบเรียบร้อยใน Pandas Index


ในการค้นหาดัชนีที่ควรแทรกองค์ประกอบเพื่อรักษาความสงบเรียบร้อยในดัชนี Pandas ให้ใช้ index.searchsorted() วิธีการ

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

import pandas as pd

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

index = pd.Index([10, 20, 30, 40, 50])

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

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

ค้นหาเรียงลำดับ:ตั้งค่าที่จะแทรกและรับตำแหน่งดัชนีที่แน่นอนซึ่งควรจะวาง -

print("\nThe exact positions where the element should be placed?...\n",index.searchsorted(45))

ตัวอย่าง

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

import pandas as pd

# Creating Pandas index
index = pd.Index([10, 20, 30, 40, 50])

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

# searchsorted
# set the value to insert and get the exact index position where it should be placed
print("\nThe exact positions where the element should be placed?...\n",index.searchsorted(45))

ผลลัพธ์

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

Pandas Index...
Int64Index([10, 20, 30, 40, 50], dtype='int64')

Number of elements in the index...
5

The exact positions where the element should be placed?...
4