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