ในการรับตำแหน่งจำนวนเต็มสำหรับป้ายกำกับที่ร้องขอและค้นหาค่าดัชนีที่ใกล้ที่สุดหากไม่มีค่าที่ตรงกัน ให้ใช้ index.get_loc() . กำหนดวิธีการ ค่าพารามิเตอร์เป็น ใกล้ที่สุด .
ขั้นแรก นำเข้าไลบรารีที่จำเป็น -
import pandas as pd
การสร้างดัชนีนุ่น -
index = pd.Index([10, 20, 30, 40, 50, 60, 70])
แสดงดัชนีหมีแพนด้า −
print("Pandas Index...\n",index) รับตำแหน่งของค่าดัชนีที่ใกล้ที่สุดหากไม่มีค่าที่ตรงกันทุกประการ ค่านี้ตั้งเป็น "ใกล้ที่สุด" โดยใช้พารามิเตอร์ "method" ของ get_loc()
print("\nGet the location of the nearest index if no exact match...\n", index.get_loc(58, method="nearest")) ตัวอย่าง
ต่อไปนี้เป็นรหัส -
import pandas as pd
# Creating Pandas index
index = pd.Index([10, 20, 30, 40, 50, 60, 70])
# 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)
# get integer location from the given index
print("\nDisplay integer location from given index...\n",index.get_loc(20))
print("\nDisplay integer location from given index...\n",index.get_loc(50))
# Get the location of the nearest index value if no exact match
# The value is set "nearest" using the "method" parameter of the get_loc()
print("\nGet the location of the nearest index if no exact match...\n", index.get_loc(58, method="nearest")) ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Pandas Index... Int64Index([10, 20, 30, 40, 50, 60, 70], dtype='int64') Number of elements in the index... 7 Display integer location from given index... 1 Display integer location from given index... 4 Get the location of the nearest index if no exact match... 5