在Python Pandas中从索引对象返回包含唯一值计数的系列

在Python Pandas中从索引对象返回包含唯一值计数的系列

要从索引对象返回包含唯一值计数的系列,请使用Pandas中的 index.value_counts() 方法。

首先,导入所需的库 –

import pandas as pd

创建Pandas索引 –

index = pd.Index([50, 10, 70, 110, 90, 50, 110, 90, 30])

显示Pandas索引 –

print("Pandas索引...\n",index)

唯一值的数量 –

print("\n获取唯一值的计数...\n",index.value_counts())

例子

下面是代码 –

import pandas as pd

# Creating Pandas index
index = pd.Index([50, 10, 70, 110, 90, 50, 110, 90, 30])

# 显示Pandas索引
print("Pandas索引...\n",index)

# 返回索引中的元素数量
print("\n索引中的元素数量...\n",index.size)

# 返回数据的dtype
print("\n数据的dtype对象...\n",index.dtype)

# 唯一值的计数
print("\n获取唯一值的计数...\n",index.value_counts())

输出

这将产生以下输出 –

Pandas索引...
Int64Index([50, 10, 70, 110, 90, 50, 110, 90, 30], dtype='int64')

索引中的元素数量...
9

数据的dtype对象...
int64

获取唯一值的计数...
50   2
110  2
90   2
10   1
70   1
30   1
dtype: int64

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程