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

Python Pandas - คำนวณตำแหน่งสไลซ์สำหรับป้ายกำกับอินพุต


ในการคำนวณตำแหน่งสไลซ์สำหรับป้ายกำกับอินพุต ให้ใช้ index.slice_locs() กระบวนการ. ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

สร้างวัตถุดัชนี Pandas -

index = pd.Index(list('pqrstuvwxyz'))

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

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

รับตำแหน่งสไลซ์ "เริ่มต้น" คือป้ายกำกับที่จะเริ่มต้นด้วย "จบ" คือป้ายที่ลงท้ายด้วย

print("\nThe slice locations with start and stop...\n",index.slice_locs(start='q', end='v'))

ตัวอย่าง

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

import pandas as pd

# Create Pandas index object
index = pd.Index(list('pqrstuvwxyz'))

# 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 slice locations
# The "start" is the label to begin with
# The "end" is the label to end with
print("\nThe slice locations with start and stop...\n",index.slice_locs(start='q', end='v'))

ผลลัพธ์

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

Pandas Index...
Index(['p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'], dtype='object')

Number of elements in the index...
11

The slice locations with start and stop...
(1, 7)