Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python Pandas - ส่งคืนชุดที่มีการนับค่าที่ไม่ซ้ำจากวัตถุดัชนี


ในการส่งคืน Series ที่มีค่าไม่ซ้ำกันจากวัตถุ Index ให้ใช้ index.value_counts() วิธีการในนุ่น

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

การสร้างดัชนีนุ่น -

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

แสดงดัชนีหมีแพนด้า -

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

จำนวนค่าที่ไม่ซ้ำ -

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

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

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())

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

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