scipy.stats.itemfreq(arr, axis = None)
函数可以帮助我们计算项目频率。
参数:
arr :[数组]输入数组。
结果:具有物品频率的2D阵列。
代码1:用于variation()
# cummulative frequency
from scipy import stats
import numpy as np
arr = [14, 31, 27, 27, 31, 13, 14, 13]
print ("Itemfrequency : \n", stats.itemfreq(arr))
print ("\n\nBincount : \n", np.bincount(arr))
输出:
Itemfrequency : [[13 2] [14 2] [27 2] [31 2]] Bincount : [0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2]
相关用法
- Python Scipy stats.sem()用法及代码示例
- Python Scipy stats.mean()用法及代码示例
- Python Scipy stats.relfreq()用法及代码示例
- Python Scipy stats.tvar()用法及代码示例
- Python Scipy stats.nanstd()用法及代码示例
- Python Scipy stats.gmean()用法及代码示例
- Python Scipy stats.trimboth()用法及代码示例
- Python Scipy stats.bayes_mvs()用法及代码示例
- Python Scipy stats.scoreatpercentile()用法及代码示例
- Python Scipy stats.nanmean()用法及代码示例
- Python Scipy stats.moment()用法及代码示例
- Python Scipy stats.trim1()用法及代码示例
- Python Scipy stats.kurtosistest()用法及代码示例
注:本文由纯净天空筛选整理自vishal3096大神的英文原创作品 sciPy stats.itemfreq() function | Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。