本文簡要介紹 python 語言中 scipy.stats.friedmanchisquare
的用法。
用法:
scipy.stats.friedmanchisquare(*samples)#
計算重複樣本的弗裏德曼檢驗。
弗裏德曼檢驗檢驗原假設,即同一個體的重複樣本具有相同的分布。它通常用於測試以不同方式獲得的樣品之間的一致性。例如,如果對同一組個體使用兩種抽樣技術,則可以使用弗裏德曼檢驗來確定這兩種抽樣技術是否一致。
- sample1, sample2, sample3…: array_like
觀察數組。所有數組必須具有相同數量的元素。必須至少提供三個樣品。
- statistic: 浮點數
檢驗統計量,校正平局。
- pvalue: 浮點數
假設檢驗統計量具有卡方分布的相關 p 值。
參數 ::
返回 ::
注意:
由於假設檢驗統計量呈卡方分布,因此 p 值僅對 n > 10 且重複樣本數超過 6 個的情況可靠。
參考:
[2]P. Sprent 和 N.C. Smeeton,“應用非參數統計方法,第三版”。第 6 章第 6.3.2 節。
例子:
在[2]中,測量了七名學生在運動前、運動後立即和運動後5分鍾的脈搏率(每分鍾)。是否有證據表明這三種情況下的脈搏頻率相似?
我們首先製定原假設 :
The pulse rates are identical on these three occasions.
讓我們用弗裏德曼檢驗來評估這個假設的合理性。
>>> from scipy.stats import friedmanchisquare >>> before = [72, 96, 88, 92, 74, 76, 82] >>> immediately_after = [120, 120, 132, 120, 101, 96, 112] >>> five_min_after = [76, 95, 104, 96, 84, 72, 76] >>> res = friedmanchisquare(before, immediately_after, five_min_after) >>> res.statistic 10.57142857142857 >>> res.pvalue 0.005063414171757498
使用 5% 的顯著性水平,我們會拒絕零假設,轉而支持備擇假設:“這三種情況下的脈率不同”。
相關用法
- Python SciPy stats.fatiguelife用法及代碼示例
- Python SciPy stats.false_discovery_control用法及代碼示例
- Python SciPy stats.find_repeats用法及代碼示例
- Python SciPy stats.f_oneway用法及代碼示例
- Python SciPy stats.f用法及代碼示例
- Python SciPy stats.fisk用法及代碼示例
- Python SciPy stats.fisher_exact用法及代碼示例
- Python SciPy stats.fligner用法及代碼示例
- Python SciPy stats.foldnorm用法及代碼示例
- Python SciPy stats.fit用法及代碼示例
- 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.friedmanchisquare。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。