本文简要介绍 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。