scipy.stats.mstats.
find_repeats#
- scipy.stats.mstats.find_repeats(arr)[source]#
找到 arr 中的重复项,并返回一个元组(repeats,repeat_count)。
输入将转换为 float64。掩码值会被丢弃。
- 参数:
- arrsequence
输入数组。如果它不是一维,该数组将被展平。
- 返回:
- repeatsndarray
重复值的数组。
- countsndarray
计数数组。
示例
>>> from scipy.stats import mstats >>> mstats.find_repeats([2, 1, 2, 3, 2, 2, 5]) (array([2.]), array([4]))
在上述示例中,2 重复 4 次。
>>> mstats.find_repeats([[10, 20, 1, 2], [5, 5, 4, 4]]) (array([4., 5.]), array([2, 2]))
在上述示例中,4 和 5 都重复了 2 次。