Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python Pandas - MultiIndex에서 요청된 레이블/레벨에 대한 위치 및 슬라이스 인덱스 가져오기

<시간/>

MultiIndex에서 요청된 레이블/레벨에 대한 위치 및 슬라이스 인덱스를 얻으려면 get_loc_level()을 사용하세요. Pandas의 메소드

먼저 필요한 라이브러리를 가져옵니다 -

import pandas as pd

MultiIndex는 pandas 개체에 대한 다단계 또는 계층적 인덱스 개체입니다.

multiIndex = pd.MultiIndex.from_arrays([list('pqrrss'), list('strvwx')],names=['One', 'Two'])

MultiIndex 표시 -

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

위치 및 슬라이스 인덱스 가져오기 -

print("\nGet the location and sliced index...\n",multiIndex.get_loc_level('r'))

예시

다음은 코드입니다 -

import pandas as pd

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

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

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

# Get the location and sliced index
print("\nGet the location and sliced index...\n",multiIndex.get_loc_level('r'))
가져오기

출력

이것은 다음과 같은 출력을 생성합니다 -

The MultiIndex...
MultiIndex([('p', 's'),
            ('q', 't'),
            ('r', 'r'),
            ('r', 'v'),
            ('s', 'w'),
            ('s', 'x')],
            names=['One', 'Two'])

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

Get the location and sliced index...
   (slice(2, 4, None), Index(['r', 'v'], dtype='object', name='Two'))