本文简要介绍 python 语言中 scipy.stats.itemfreq
的用法。
用法:
scipy.stats.itemfreq(*args, **kwds)
itemfreq
已弃用!itemfreq
已弃用,将在未来版本中删除。改为使用np.unique(…, return_counts=True)返回项目频率的二维数组。
- a: (N,) 数组
输入数组。
- itemfreq: (K, 2) 数组
二维频率表。第 1 列包含来自 a 的已排序的唯一值,第 2 列包含它们各自的计数。
参数:
返回:
例子:
>>> from scipy import stats >>> a = np.array([1, 1, 5, 0, 1, 2, 2, 0, 1, 4]) >>> stats.itemfreq(a) array([[ 0., 2.], [ 1., 4.], [ 2., 2.], [ 4., 1.], [ 5., 1.]]) >>> np.bincount(a) array([2, 4, 2, 0, 1, 1])
>>> stats.itemfreq(a/10.) array([[ 0. , 2. ], [ 0.1, 4. ], [ 0.2, 2. ], [ 0.4, 1. ], [ 0.5, 1. ]])
相关用法
- Python SciPy stats.iqr用法及代码示例
- Python SciPy stats.invwishart用法及代码示例
- Python SciPy stats.invgamma用法及代码示例
- Python SciPy stats.invgauss用法及代码示例
- Python SciPy stats.invweibull用法及代码示例
- Python SciPy stats.genpareto用法及代码示例
- Python SciPy stats.skewnorm用法及代码示例
- Python SciPy stats.cosine用法及代码示例
- Python SciPy stats.norminvgauss用法及代码示例
- Python SciPy stats.bartlett用法及代码示例
- Python SciPy stats.levy_stable用法及代码示例
- Python SciPy stats.page_trend_test用法及代码示例
- Python SciPy stats.exponpow用法及代码示例
- Python SciPy stats.gumbel_l用法及代码示例
- Python SciPy stats.chisquare用法及代码示例
- Python SciPy stats.semicircular用法及代码示例
- Python SciPy stats.gzscore用法及代码示例
- Python SciPy stats.gompertz用法及代码示例
- Python SciPy stats.normaltest用法及代码示例
- Python SciPy stats.genlogistic用法及代码示例
- Python SciPy stats.skellam用法及代码示例
- Python SciPy stats.wilcoxon用法及代码示例
- Python SciPy stats.johnsonsu用法及代码示例
- Python SciPy stats.fatiguelife用法及代码示例
- Python scipy.stats.lognorm用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.stats.itemfreq。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。