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

Python Pandas - ส่งคืนป้ายกำกับจากดัชนีหากป้ายกำกับทั้งหมดในดัชนีช้ากว่าป้ายกำกับที่ส่งผ่าน


หากต้องการส่งคืนป้ายกำกับจากดัชนีหากป้ายกำกับทั้งหมดในดัชนีอยู่หลังป้ายกำกับที่ส่ง ให้ใช้ index.asof() วิธีการในนุ่น

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

import pandas as pd

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

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

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

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

ส่งคืนฉลากจากดัชนี ส่งคืน NaN เมื่อป้ายกำกับทั้งหมดในดัชนีช้ากว่าป้ายกำกับที่ส่ง -

print("\nGet the label from the index...\n",index.asof(6))

ตัวอย่าง

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

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)

# Return the label from the index
# Returns NaN when if all of the labels in the index are later than the passed label
print("\nGet the label from the index...\n",index.asof(6))

ผลลัพธ์

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

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

Number of elements in the index...
7

Get the label from the index...
Nan