Python| Pandas MultiIndex.nlevels
Python是用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas MultiIndex.nlevels
属性返回 MultiIndex 中的整数级数。
Syntax: MultiIndex.nlevels
示例 #1:使用MultiIndex.nlevels
属性查找 MultiIndex 中的级别数。
# importing pandas as pd
import pandas as pd
# Creating the array
array = [[1, 2, 3], ['Sharon', 'Nick', 'Bailey']]
# Print the array
print(array)
输出 :
现在让我们使用这个数组创建 MultiIndex
# Creating the MultiIndex
midx = pd.MultiIndex.from_arrays(array, names =('Number', 'Names'))
# Print the MultiIndex
print(midx)
输出 :
现在我们将在 MultiIndex 中找到级别数。
# Print the number of the levels in MultiIndex
midx.nlevels
输出 :
正如我们在输出中看到的,midx MultiIndex 中有 2 个级别。示例 #2:使用MultiIndex.nlevels
属性查找给定 MultiIndex 中的级别数。
# importing pandas as pd
import pandas as pd
# Creating the array
array = [[1, 2, 3], ['Sharon', 'Nick', 'Bailey'],
['Doctor', 'Scientist', 'Physicist']]
# Print the array
print(array)
输出 :
现在让我们使用这个数组创建 MultiIndex
# Creating the MultiIndex
midx = pd.MultiIndex.from_arrays(array,
names =('Ranking', 'Names', 'Profession'))
# Print the MultiIndex
print(midx)
输出 :
现在我们将在 MultiIndex 中找到级别数。
# Print the number of level in MultiIndex
midx.nlevels
输出 :
正如我们在输出中看到的, midx MultiIndex有 3 个级别。