本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。