Python Pandas Index.unique()
Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。
Pandas Index.unique()函数返回索引中的唯一值。独一无二的值是按照外观的顺序返回的,这并不是排序。
语法: Index.unique(level=None)
参数 :
level :只返回指定级别的值(对于MultiIndex)。
返回:没有重复的索引
例子#1:使用Index.unique()函数来返回索引中的唯一值。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index(['Harry', 'Mike', 'Arther', 'Nick',
'Harry', 'Arther'], name ='Student')
# Print the Index
print(idx)
输出 :
让我们找到索引中的所有唯一值。
# find unique values in the index
idx.unique()
输出 :
该函数已经返回了一个新的索引,该索引具有原索引的所有唯一值。
例子#2:使用Index.unique()函数来查找索引中的唯一值
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index([21, 10, 30, 40, 50, 10, 50])
# Print the Index
print(idx)
输出 :
让我们找到索引中所有的唯一值
# for finding the unique values in the index
idx.unique()
输出 :
该函数已经返回了一个新的索引,其中包含了原索引中的所有唯一值。