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

Python Pandas - 이 MultiIndex에서 레벨의 정수를 가져옵니다.

<시간/>

이 MultiIndex에서 레벨의 정수를 얻으려면 MultiIndex.nlevels를 사용하세요. 판다의 부동산. 먼저 필요한 라이브러리를 가져옵니다 -

import pandas as pd

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

arrays = [[1, 2, 3, 4, 5], ['John', 'Tim', 'Jacob', 'Chris', 'Keiron']]

"names" 매개변수는 각 인덱스 수준의 이름을 설정합니다. from_arrays() 다중 인덱스를 만드는 데 사용되는 UI -

multiIndex = pd.MultiIndex.from_arrays(arrays, names=('ranks', 'student'))

Multiindex의 정수 레벨 가져오기 -

print("\nThe number of levels in Multi-index...\n",multiIndex.nlevels)

예시

다음은 코드입니다 -

import pandas as pd

# MultiIndex is a multi-level, or hierarchical, index object for pandas objects
# Create arrays
arrays = [[1, 2, 3, 4, 5], ['John', 'Tim', 'Jacob', 'Chris', 'Keiron']]

# The "names" parameter sets the names for each of the index levels
# The from_arrays() uis used to create a Multiindex
multiIndex = pd.MultiIndex.from_arrays(arrays, names=('ranks', 'student'))

# display the Multiindex
print("The Multi-index...\n",multiIndex)

# get the integer number of levels in Multiindex
print("\nThe number of levels in Multi-index...\n",multiIndex.nlevels)

# get the levels in Multiindex
print("\nThe levels in Multi-index...\n",multiIndex.levels)

출력

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

The Multi-index...
MultiIndex([(1,   'John'),
            (2,    'Tim'),
            (3,  'Jacob'),
            (4,  'Chris'),
            (5, 'Keiron')],
            names=['ranks', 'student'])

The number of levels in Multi-index...
   2

The levels in Multi-index...
   [[1, 2, 3, 4, 5], ['Chris', 'Jacob', 'John', 'Keiron', 'Tim']]