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

Python Pandas - ตัวสร้างดัชนีคำนวณและมาสก์สำหรับดัชนีใหม่ แม้กระทั่งสำหรับวัตถุที่มีมูลค่าไม่ซ้ำกัน


ในการคำนวณตัวสร้างดัชนีและมาสก์สำหรับดัชนีใหม่แม้สำหรับวัตถุที่มีค่าที่ไม่ซ้ำกัน ให้ใช้ index.get_indexer_non_unique() method.Python Pandas - คำนวณดัชนีและมาสก์สำหรับดัชนีใหม่ แม้กระทั่งสำหรับวัตถุที่มีมูลค่าไม่ซ้ำกัน

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

import pandas as pd

การสร้างดัชนี Pandas ด้วยค่าที่ไม่ซ้ำ -

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

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

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

ตัวสร้างดัชนีและมาสก์คำนวณ ทำเครื่องหมายโดย -1 เนื่องจากไม่อยู่ในดัชนี นอกจากนี้ยังคำนวณค่าวัตถุดัชนีที่ไม่ซ้ำ -

print("\nGet the indexes...\n",index.get_indexer_non_unique([30, 40, 90, 100, 50, 60]))

ตัวอย่าง

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

import pandas as pd

# Creating Pandas index with some non-unique values
index = pd.Index([10, 20, 30, 40, 40, 50, 60, 60, 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
# Marked by -1, as it is not in index
# This also computes non-unique Index object values
print("\nGet the indexes...\n",index.get_indexer_non_unique([30, 40, 90, 100, 50, 60]))

ผลลัพธ์

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

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

Number of elements in the index...
10

Get the indexes...
(array([ 2, 3, 4, -1, -1, 5, 6, 7, 8], dtype=int64), array([2, 3], dtype=int64))