Python Pandas MultiIndex.nlevels
Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。
Pandas MultiIndex.nlevels属性返回MultiIndex中的整数级数。
语法: 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:使用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个级别。