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