Python Pandas - 返回 Index 物件中的唯一元素數
要返回 Index 物件中唯一元素的數量,請在 Pandas 中使用 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("\nCount of unique values...\n",index.nunique())
示例
下面是程式碼 −
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)
# 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())
# Get the number of unique values in the index
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
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP