NumPyunique函数

首页 / Numpy入门教程 / NumPyunique函数

此函数在输入数组中返回唯一元素的数组,该函数可以返回唯一值数组和相关索引数组的元组。

numpy.unique(arr, return_index, return_inverse, return_counts)

参数说明,

Sr.No. Parameter & 描述
1

arr

2

return_index

如果为True,则返回输入数组中元素的索引

3

return_inverse

如果为True,则返回唯一数组的索引,该索引可用于重建输入数组

4

return_counts

如果为True,则返回唯一数组中的元素出现在原始数组中的次数

import numpy as np 
a=np.array([5,2,6,2,7,5,6,8,2,9]) 

print 'First array:' 
print a 
print '\n'  

print 'Unique values of first array:' 
u=np.unique(a) 
print u 
print '\n'  

print 'Unique array and Indices array:' 
u,indices=np.unique(a, return_index=True) 
print indices 
print '\n'  

print 'We can see each number corresponds to index in original array:' 
print a 
print '\n'  

print 'Indices of unique array:' 
u,indices=np.unique(a,return_inverse=True) 
print u 
print '\n' 

print 'Indices are:' 
print indices 
print '\n'  

print 'Reconstruct the original array using indices:' 
print u[indices] 
print '\n'  

print 'Return the count of repetitions of unique elements:' 
u,indices=np.unique(a,return_counts=True) 
print u 
print indices

其输出如下-

First array:
[5 2 6 2 7 5 6 8 2 9]

Unique values of first array:
[2 5 6 7 8 9]

Unique array and Indices array:
[1 0 2 4 7 9]

We can see each number corresponds to index in original array:
[5 2 6 2 7 5 6 8 2 9]

Indices of unique array:
[2 5 6 7 8 9]

Indices are:
[1 0 2 0 3 1 2 4 0 5]

Reconstruct the original array using indices:
[5 2 6 2 7 5 6 8 2 9]

Return the count of repetitions of unique elements:
[2 5 6 7 8 9]
 [3 2 2 1 1 1]

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

教程推荐

现代C++20实战高手课 -〔卢誉声〕

云计算的必修小课 -〔吕蕴偲〕

零基础入门Spark -〔吴磊〕

手把手带你写一门编程语言 -〔宫文学〕

DDD实战课 -〔欧创新〕

从0打造音视频直播系统 -〔李超〕

透视HTTP协议 -〔罗剑锋(Chrono)〕

从0开始学微服务 -〔胡忠想〕

技术领导力实战笔记 -〔TGO鲲鹏会〕

好记忆不如烂笔头。留下您的足迹吧 :)