ในการค้นหาดัชนีที่ควรแทรกค่าที่ส่งผ่านเป็นอาร์เรย์เพื่อรักษาลำดับในดัชนี Pandas ให้ใช้ index.searchsorted() วิธีการ
ขั้นแรก นำเข้าไลบรารีที่จำเป็น -
import pandas as pd
การสร้างดัชนีนุ่น -
index = pd.Index([10, 20, 30, 40, 50])
แสดงดัชนีหมีแพนด้า −
print("Pandas Index...\n",index) Searchsorted - ตั้งค่าที่จะแทรกเหมือนอาร์เรย์และรับตำแหน่งดัชนีที่แน่นอนซึ่งควรวางค่าเหล่านี้ -
print("\nThe exact positions where the values should be placed?...\n",index.searchsorted([35, 60])) ตัวอย่าง
ต่อไปนี้เป็นรหัส -
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 values to insert like an array and get the exact index positions
# where these values should be placed
print("\nThe exact positions where the values should be placed?...\n",index.searchsorted([35, 60])) ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Pandas Index... Int64Index([10, 20, 30, 40, 50], dtype='int64') Number of elements in the index... 5 The exact positions where the values should be placed?... [3 5]