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

Python Pandas - Nhận vị trí cho một nhãn hoặc nhiều nhãn trong MultiIndex

Để tìm vị trí cho một nhãn hoặc nhiều nhãn trong MultiIndex, hãy sử dụng MultiIndex.get_loc () trong Pandas.

Đầu tiên, hãy nhập các thư viện được yêu cầu -

import pandas as pd

MultiIndex là một đối tượng chỉ mục đa cấp hoặc phân cấp cho các đối tượng gấu trúc -

multiIndex = pd.MultiIndex.from_arrays([list('pqrrss'), list('stuvwx')])

Hiển thị MultiIndex -

print("The MultiIndex...\n",multiIndex)

Nhận vị trí -

print("\nGet the locations in MultiIndex...\n",multiIndex.get_loc('s'))

Ví dụ

Sau đây là mã -

import pandas as pd

# MultiIndex is a multi-level, or hierarchical, index object for pandas objects
multiIndex = pd.MultiIndex.from_arrays([list('pqrrss'), list('stuvwx')])

# display the MultiIndex
print("The MultiIndex...\n",multiIndex)

# get the levels in MultiIndex
print("\nThe levels in MultiIndex...\n",multiIndex.levels)

# Get the location
print("\nGet the locations in MultiIndex...\n",multiIndex.get_loc('s'))

Đầu ra

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

The MultiIndex...
MultiIndex([('p', 's'),
            ('q', 't'),
            ('r', 'u'),
            ('r', 'v'),
            ('s', 'w'),
            ('s', 'x')],
           )

The levels in MultiIndex...
   [['p', 'q', 'r', 's'], ['s', 't', 'u', 'v', 'w', 'x']]

Get the locations in MultiIndex...
   slice(4, 6, None)