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

Python Pandas - คำนวณการแบ่งส่วนที่ถูกต้องที่สอดคล้องกับป้ายกำกับที่กำหนด


ในการคำนวณขอบเขตของสไลซ์ที่ถูกต้องซึ่งสอดคล้องกับป้ายกำกับที่กำหนด ให้ใช้ index.get_slice_bound() . ตั้งค่า ด้าน พารามิเตอร์เป็น ขวา .

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

import pandas as pd

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

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

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

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

รับขอบฝานที่เหมาะสม ส่งคืนขอบเขตสไลซ์ด้านขวาของป้ายกำกับที่กำหนด หากพารามิเตอร์ "side" ถูกตั้งค่าเป็น "right" -

print("\nGet the right slice bound...\n",index.get_slice_bound(30, side='right', kind ='getitem'))

ตัวอย่าง

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

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 the right slice bound
# Returns the right slice bound of given label if "side" parameter is set to "right"
print("\nGet the right slice bound...\n", index.get_slice_bound(30, side='right', kind ='getitem'))

ผลลัพธ์

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

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

Number of elements in the index...
7

Get the right slice bound...
3