当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Scipy stats.itemfreq()用法及代码示例


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]


相关用法


注:本文由纯净天空筛选整理自vishal3096大神的英文原创作品 sciPy stats.itemfreq() function | Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。