本文简要介绍 python 语言中 scipy.stats.find_repeats
的用法。
用法:
scipy.stats.find_repeats(arr)#
查找重复和重复计数。
- arr: array_like
输入数组。这被强制转换为 float64。
- values: ndarray
重复的(展平的)输入中的唯一值。
- counts: ndarray
相应‘value’ 的重复次数。
参数 ::
返回 ::
注意:
在 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]))
相关用法
- Python SciPy stats.fisk用法及代码示例
- Python SciPy stats.fisher_exact用法及代码示例
- Python SciPy stats.fit用法及代码示例
- Python SciPy stats.fatiguelife用法及代码示例
- Python SciPy stats.friedmanchisquare用法及代码示例
- Python SciPy stats.false_discovery_control用法及代码示例
- Python SciPy stats.f_oneway用法及代码示例
- Python SciPy stats.f用法及代码示例
- Python SciPy stats.fligner用法及代码示例
- Python SciPy stats.foldnorm用法及代码示例
- Python SciPy stats.foldcauchy用法及代码示例
- Python SciPy stats.anderson用法及代码示例
- Python SciPy stats.iqr用法及代码示例
- Python SciPy stats.genpareto用法及代码示例
- Python SciPy stats.skewnorm用法及代码示例
- Python SciPy stats.cosine用法及代码示例
- Python SciPy stats.norminvgauss用法及代码示例
- Python SciPy stats.directional_stats用法及代码示例
- Python SciPy stats.invwishart用法及代码示例
- Python SciPy stats.bartlett用法及代码示例
- Python SciPy stats.levy_stable用法及代码示例
- Python SciPy stats.page_trend_test用法及代码示例
- Python SciPy stats.itemfreq用法及代码示例
- Python SciPy stats.exponpow用法及代码示例
- Python SciPy stats.gumbel_l用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.stats.find_repeats。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。