Computer >> Máy Tính >  >> Lập trình >> Python

Python Pandas - Trả về một Chuỗi chứa số lượng giá trị duy nhất từ ​​đối tượng Chỉ mục

Để trả về một Chuỗi chứa số lượng giá trị duy nhất từ ​​đối tượng Chỉ mục, hãy sử dụng index.value_counts () trong Pandas.

Đầu tiên, hãy nhập các thư viện được yêu cầu -

import pandas as pd

Tạo chỉ mục Pandas -

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

Hiển thị chỉ mục Gấu trúc -

print("Pandas Index...\n",index)

Số lượng giá trị duy nhất -

print("\nGet the count of unique values...\n",index.value_counts())

Ví dụ

Sau đây là mã -

import pandas as pd

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

# Display the Pandas index
print("Pandas Index...\n",index)

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# Return the dtype of the data
print("\nThe dtype object...\n",index.dtype)

# count of unique values
print("\nGet the count of unique values...\n",index.value_counts())

Đầu ra

Điều này sẽ tạo ra kết quả sau -

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

Get the count of unique values...
50   2
110  2
90   2
10   1
70   1
30   1
dtype: int64