Python Pandas - 将多索引转换为包含级别值的元组的索引
要将多索引转换为包含级别值的元组的索引,请使用 MultiIndex.to_flat_index() 方法。
首先,导入所需的库 −
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, names=('ranks', 'student'))
转换 MultiIndex −
print("\nConverting a MultiIndex to an Index of Tuples containing the level values...\n",multiIndex.to_flat_index())
示例
以下是代码 −
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, names=('ranks', 'student')) # display the MultiIndex print("The Multi-index...\n",multiIndex) # get the levels in MultiIndex print("\nThe levels in Multi-index...\n",multiIndex.levels) # Convert the MultiIndex print("\nConverting a MultiIndex to an Index of Tuples containing the level values...\n",multiIndex.to_flat_index())
输出
这会产生以下输出 −
The Multi-index... MultiIndex([(1, 'John'), (2, 'Tim'), (3, 'Jacob'), (4, 'Chris')], names=['ranks', 'student']) The levels in Multi-index... [[1, 2, 3, 4], ['Chris', 'Jacob', 'John', 'Tim']] Converting a MultiIndex to an Index of Tuples containing the level values... Index([(1, 'John'), (2, 'Tim'), (3, 'Jacob'), (4, 'Chris')], dtype='object')
广告