scipy.stats.

find_repeats#

scipy.stats.find_repeats(arr)[源代码]#

查找重复值和重复次数。

参数:
arrarray_like

输入数组。转换为 float64。

返回:
valuesndarray

重复的从(扁平)输入中的唯一值。

countsndarray

相应的“值”重复的次数。

注释

在 numpy >= 1.9 中 numpy.unique 提供了类似的功能。主要区别在于 find_repeats 仅返回重复值。

示例

>>> from scipy import stats
>>> stats.find_repeats([2, 1, 2, 3, 2, 2, 5])
RepeatedResults(values=array([2.]), counts=array([4]))
>>> stats.find_repeats([[10, 20, 1, 2], [5, 5, 4, 4]])
RepeatedResults(values=array([4.,  5.]), counts=array([2, 2]))