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

Python Pandas - Trả về các giá trị duy nhất trong chỉ mục

Để trả về các giá trị duy nhất trong chỉ mục, hãy sử dụng index.unique () 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([10, 50, 70, 10, 90, 50, 10, 30])

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

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

Nhận các giá trị duy nhất từ ​​chỉ mục. Các giá trị duy nhất được trả về theo thứ tự xuất hiện, điều này KHÔNG sắp xếp -

index.unique()

Ví dụ

Sau đây là mã -

import pandas as pd

# Creating Pandas index
index = pd.Index([10, 50, 70, 10, 90, 50, 10, 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)

# get the unique values from the index
# Unique values are returned in order of appearance, this does NOT sort
print("\nUnique values from the Index..\n", index.unique())

Đầu ra

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

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

Number of elements in the index...
8

The dtype object...
int64

Unique values from the Index..
Int64Index([10, 50, 70, 90, 30], dtype='int64')