深情草丛

文章
11
资源
1
加入时间
3年0月8天

numpy.bincount 详解

numpy.bincount(x, weights=None, minilength=None)功能:统计非负整数数组中每个值的出现次数。【该函数官方文档】函数实例:# x 中最大值为 3,因此输出维度为 4(索引值为0->4)x = np.array([3, 2, 1, 3, 1])# 0 在 x 中出现了 0 次,1 在 x 中出现了 2 次......np.bincount(x) # array([0, 2, 1, 2], dtype=int64) # bicount()