NumPy 中的 unique函数

首页 / Numpy入门教程 / NumPy 中的 unique函数

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

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,则返回唯一数组中的元素出现在原始数组中的次数

链接:https://www.learnfk.comhttps://www.learnfk.com/numpy/numpy-unique.html

来源:LearnFk无涯教程网

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]

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

技术教程推荐

程序员进阶攻略 -〔胡峰〕

数据分析实战45讲 -〔陈旸〕

Elasticsearch核心技术与实战 -〔阮一鸣〕

MongoDB高手课 -〔唐建法(TJ)〕

Kafka核心源码解读 -〔胡夕〕

WebAssembly入门课 -〔于航〕

讲好故事 -〔涵柏〕

Tony Bai · Go语言第一课 -〔Tony Bai〕

中间件核心技术与实战 -〔丁威〕

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