我是靠谱客的博主 正直裙子,最近开发中收集的这篇文章主要介绍python 统计数组中不同元素的数量,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

很简单,使用numpy.unique()函数,查找数组的唯一元素,
返回数组的排序后的唯一元素。官方文档见https://numpy.org/doc/stable/reference/generated/numpy.unique.html

import numpy as np
data=np.array([[1,2,3],[0,1,2],[3,4,5]])
np.unique(data)
num=len(np.unique(data))

结果
array([0, 1, 2, 3, 4, 5])
6

如要获取每个数重复的次数

ar,num=np.unique(data,return_counts=True)

结果
ar
Out: array([0, 1, 2, 3, 4, 5])

num
Out: array([1, 2, 2, 2, 1, 1], dtype=int64)

最后

以上就是正直裙子为你收集整理的python 统计数组中不同元素的数量的全部内容,希望文章能够帮你解决python 统计数组中不同元素的数量所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部