MultiIndex의 수준을 열로 사용하여 DataFrame을 만들려면 MultiIndex.to_frame()을 사용하세요. 방법. 이름을 사용하여 색인 수준 이름 대체 매개변수.
먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
MultiIndex는 pandas 개체에 대한 다단계 또는 계층적 인덱스 개체입니다. 배열 생성 -
arrays = [[1, 2, 3, 4], ['John', 'Tim', 'Jacob', 'Chris']]
"names" 매개변수는 각 인덱스 수준의 이름을 설정합니다. from_arrays()는 MultiIndex를 생성하는 데 사용됩니다 -
multiIndex = pd.MultiIndex.from_arrays(arrays)
to_frame()을 사용하여 MultiIndex의 수준을 열로 사용하여 DataFrame을 만듭니다. "name" 매개변수를 사용하고 이름을 전달하여 인덱스 수준 이름을 대체하십시오 -
dataFrame = multiIndex.to_frame(name=['One', 'Two'])
예
다음은 코드입니다 -
import pandas as pd # MultiIndex is a multi-level, or hierarchical, index object for pandas objects # Create arrays arrays = [[1, 2, 3, 4], ['John', 'Tim', 'Jacob', 'Chris']] # 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) # display the MultiIndex print("The Multi-index...\n",multiIndex) # get the levels in MultiIndex print("\nThe levels in Multi-index...\n",multiIndex.levels) # Create a DataFrame with the levels of the MultiIndex as columns using to_frame() # Use the "name" parameter and pass the names to substitute index level names dataFrame = multiIndex.to_frame(name=['One', 'Two']) # Display the DataFrame print("\nThe DataFrame...\n",dataFrame)
출력
이것은 다음과 같은 출력을 생성합니다 -
The Multi-index... MultiIndex([(1, 'John'), (2, 'Tim'), (3, 'Jacob'), (4, 'Chris')], ) The levels in Multi-index... [[1, 2, 3, 4], ['Chris', 'Jacob', 'John', 'Tim']] The DataFrame... One Two 1 John 1 John 2 Tim 2 Tim 3 Jacob 3 Jacob 4 Chris 4 Chris