MultiIndex의 레벨 이름을 가져오려면 MultiIndex.names를 사용하세요. 판다의 부동산. 먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
MultiIndex는 pandas 개체에 대한 다단계 또는 계층적 인덱스 개체입니다. 배열 생성 -
arrays = [[1, 2, 3, 4, 5], ['John', 'Tim', 'Jacob', 'Chris', 'Keiron']]
"names" 매개변수는 각 인덱스 수준의 이름을 설정합니다. from_arrays()는 Multiindex를 생성하는 데 사용됩니다 -
multiIndex = pd.MultiIndex.from_arrays(arrays, names=('ranks', 'student'))
Multiindex에서 레벨 이름 가져오기 -
print("\nThe names of levels in Multi-index...\n",multiIndex.names)
예시
다음은 코드입니다 -
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() is 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 names of levels in Multiindex print("\nThe names of levels in Multi-index...\n",multiIndex.names) # 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 names of levels in Multi-index... ['ranks', 'student'] The levels in Multi-index... [[1, 2, 3, 4, 5], ['Chris', 'Jacob', 'John', 'Keiron', 'Tim']]