Python|熊猫索引.summary()
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas Index.summary()
函数返回索引的汇总表示。此函数类似于我们为数据帧提供的功能。
Syntax: Index.summary(name=None)
Returns : Summary
示例 #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()
输出 :
正如我们在输出中看到的,该函数返回了索引的摘要。