mood.test
位于 stats
包(package)。 说明
对尺度参数的差异执行 Mood 的两个样本检验。
用法
mood.test(x, ...)
## Default S3 method:
mood.test(x, y,
alternative = c("two.sided", "less", "greater"), ...)
## S3 method for class 'formula'
mood.test(formula, data, subset, na.action, ...)
参数
x, y |
数据值的数值向量。 |
alternative |
表示备择假设,必须是 |
formula |
|
data |
包含公式 |
subset |
一个可选向量,指定要使用的观测子集。 |
na.action |
一个函数,指示当数据包含 |
... |
要传递给方法或从方法传递的更多参数。 |
细节
底层模型是两个样本分别取自 和 ,其中 是公共位置参数, 是尺度参数。
原假设是 。
对于这个问题还有更有用的测试。
对于关系,采用 Mielke (1967) 的公式。
值
类"htest"
的列表包含以下组件:
statistic |
检验统计量的值。 |
p.value |
检验的 p 值。 |
alternative |
说明备择假设的字符串。您可以仅指定首字母。 |
method |
字符串 |
data.name |
给出数据名称的字符串。 |
例子
## Same data as for the Ansari-Bradley test:
## Serum iron determination using Hyland control sera
ramsay <- c(111, 107, 100, 99, 102, 106, 109, 108, 104, 99,
101, 96, 97, 102, 107, 113, 116, 113, 110, 98)
jung.parekh <- c(107, 108, 106, 98, 105, 103, 110, 105, 104,
100, 96, 108, 103, 104, 114, 114, 113, 108, 106, 99)
mood.test(ramsay, jung.parekh)
## Compare this to ansari.test(ramsay, jung.parekh)
参考
William J. Conover (1971), Practical nonparametric statistics. New York: John Wiley & Sons. Pages 234f.
Paul W. Mielke, Jr. (1967). Note on some squared rank tests with existing ties. Technometrics, 9/2, 312-314. doi:10.2307/1266427.
也可以看看
fligner.test
用于基于排名的(非参数)k-sample 方差同质性检验; ansari.test
用于另一个基于等级的两个样本测试,用于衡量尺度参数的差异; var.test
和 bartlett.test
用于方差同质性的参数检验。
相关用法
- R model.matrix 构建设计矩阵
- R monthplot 绘制时间序列中的季节性或其他子序列
- R model.tables 计算 Aov 模型拟合的结果表
- R model.extract 从模型框架中提取组件
- R model.frame 从公式或拟合中提取模型框架
- R medpolish 矩阵的中值波兰(稳健双向分解)
- R mcnemar.test 计数数据的麦克尼马尔卡方检验
- R mantelhaen.test 计数数据的 Cochran-Mantel-Haenszel 卡方检验
- R mahalanobis 马哈拉诺比斯距离
- R manova 多变量方差分析
- R make.link 为 GLM 家庭创建链接
- R median 中值
- R makepredictcall 用于安全预测的实用函数
- R mauchly.test 莫奇利球形度检验
- R mad 中值绝对偏差
- R stlmethods STL 对象的方法
- R naprint 调整缺失值
- R summary.nls 总结非线性最小二乘模型拟合
- R summary.manova 多元方差分析的汇总方法
- R formula 模型公式
- R nls.control 控制 nls 中的迭代
- R aggregate 计算数据子集的汇总统计
- R deriv 简单表达式的符号和算法导数
- R kruskal.test Kruskal-Wallis 秩和检验
- R quade.test 四方测试
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Mood Two-Sample Test of Scale。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。