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

Python Pandas - คำนวณดัชนีและค้นหาค่าดัชนีก่อนหน้าหากไม่มีค่าที่ตรงกันทุกประการ


ในการคำนวณตัวสร้างดัชนีและค้นหาค่าดัชนีก่อนหน้าหากไม่มีค่าที่ตรงกันทั้งหมด ให้ใช้ index.get_indexer() กระบวนการ. กำหนดวิธีการ .ด้วย พารามิเตอร์เพื่อ เติม .

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

import pandas as pd

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

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

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

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

คำนวณดัชนีและมาสก์โดยใช้ "get_indexer" ค้นหาค่าดัชนีก่อนหน้าหากไม่มีค่าที่ตรงกันทั้งหมดโดยใช้พารามิเตอร์ "method" ค่านี้ถูกกำหนดเป็น "ffill" −

print("\nGet the indexes...\n",index.get_indexer([30, 20, 75, 80, 50, 59], method="ffill"))

ตัวอย่าง

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

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)

# Compute indexer and mask using the "get_indexer"
# Find the previous index value if no exact match using the "method" parameter.
# The value is set "ffill"
print("\nGet the indexes...\n",index.get_indexer([30, 20, 75, 80, 50, 59], method="ffill"))

ผลลัพธ์

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

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

Number of elements in the index...
7

Get the indexes...
[2 1 6 6 4 4]