Python Pandas - 返回索引对象中唯一元素的数量
要返回Index对象中唯一元素的数量,请使用Pandas中的方法。首先,导入所需的库-index.nunique()
import pandas as pd
创建熊猫索引-
index = pd.Index([50, 10, 70, 110, 90, 50, 110, 90, 30])
显示熊猫指数-
print("Pandas Index...\n",index)获取索引中唯一值的数量-
print("\nCount of unique values...\n",index.nunique())示例
以下是代码-
import pandas as pd
#创建Pandas索引
index = pd.Index([50, 10, 70, 110, 90, 50, 110, 90, 30])
#显示Pandas索引
print("Pandas Index...\n",index)
#返回索引中的元素数
print("\nNumber of elements in the index...\n",index.size)
#返回数据的dtype
print("\nThe dtype object...\n",index.dtype)
#从索引中获取唯一值
#唯一值按出现顺序返回,这不排序
print("\nUnique values from the Index..\n", index.unique())
#获取索引中唯一值的数量
print("\nCount of unique values...\n",index.nunique())输出结果这将产生以下输出-
Pandas Index... Int64Index([50, 10, 70, 110, 90, 50, 110, 90, 30], dtype='int64') Number of elements in the index... 9 The dtype object... int64 Unique values from the Index.. Int64Index([50, 10, 70, 110, 90, 30], dtype='int64') Count of unique values... 6
热门推荐
10 新婚祝福语大全简短精炼
11 成长仪式的简短祝福语
12 发廊元旦祝福语大全简短
13 简短霸气的考试祝福语
14 股市祝福语简短10字
15 万寿祝福语简短
16 姐姐女儿结婚祝福语简短
17 牛年除夕祝福语简短的
18 女儿结婚账单祝福语简短