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

Python Pandas - Nhận vị trí số nguyên cho nhãn được yêu cầu

Để lấy vị trí số nguyên cho nhãn được yêu cầu trong Pandas, hãy sử dụng index.get_loc () 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 vị trí số nguyên từ chỉ mục đã cho -

print("\nDisplay integer location from given index...\n",index.get_loc('w'))
print("\nDisplay integer location from given index...\n",index.get_loc('z'))

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 integer location from the given index
print("\nDisplay integer location from given index...\n",index.get_loc('w'))
print("\nDisplay integer location from given index...\n",index.get_loc('z'))

Đầ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

Display integer location from given index...
7

Display integer location from given index...
10