Computer >> Máy Tính >  >> Lập trình >> Python

Python Pandas - Tính toán trình chỉ mục lát cho các nhãn đầu vào

Để tính toán trình lập chỉ mục lát cho các nhãn đầu vào, hãy sử dụng index.slice_indexer () phương pháp. Đầu tiên, hãy nhập các thư viện được yêu cầu -

import pandas as pd

Tạo đối tượng chỉ mục Pandas -

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

Hiển thị chỉ mục Gấu trúc -

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

Nhận trình chỉ mục lát. "Bắt đầu" là nhãn để bắt đầu. "Kết thúc" là nhãn kết thúc bằng -

print("\nThe slice indexer with start and stop...\n",index.slice_indexer(start='s', end='w'))

Ví dụ

Sau đây là mã -

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

Đầu ra

Điều này sẽ tạo ra kết quả sau -

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 indexer with start and stop...
slice(3, 8, None)