Python Pandas Index.summary()
Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。
Pandas Index.summary()函数返回索引的汇总表示。这个函数类似于我们对数据帧的处理。
语法: Index.summary(name=None)
返回:摘要
例子#1:使用Index.summary()函数来查找索引的摘要。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index(['Beagle', 'Pug', 'Labrador',
'Sephard', 'Mastiff', 'Husky'])
# Print the index
idx
输出 :
现在我们将找到索引的摘要。
# find the summary of the Index.
idx.summary()
输出 :
正如我们在输出中所看到的,该函数已经返回了一个索引的整体摘要。
例子#2:使用Index.summary()函数来总结索引。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index([22, 14, 8, 56, 27, 21, 51, 23])
# Print the index
idx
输出 :
现在我们将找到索引的摘要。
# the function returns the summary of the Index
idx.summary()
输出 :
正如我们在输出中看到的,该函数已经返回了索引的摘要。