R語言
mcnemar.test
位於 stats
包(package)。 說明
對二維列聯表中行和列的對稱性執行麥克尼馬爾卡方檢驗。
用法
mcnemar.test(x, y = NULL, correct = TRUE)
參數
x |
矩陣形式的二維列聯表或因子對象。 |
y |
一個因子對象;如果 |
correct |
指示計算檢驗統計量時是否應用連續性校正的邏輯。 |
細節
無效的是被分類到小區[i,j]
和[j,i]
的概率是相同的。
如果x
是一個矩陣,它被視為一個二維列聯表,因此它的條目應該是非負整數。否則,x
和 y
必須是相同長度的向量或因子。刪除不完整的情況,將向量強製轉換為因子,並根據這些因子計算列聯表。
如果 correct
是 TRUE
,則僅在 2×2 情況下使用連續性校正。
值
類"htest"
的列表包含以下組件:
statistic |
麥克尼馬爾統計數據的值。 |
parameter |
檢驗統計量的近似卡方分布的自由度。 |
p.value |
檢驗的 p 值。 |
method |
指示執行的測試類型以及是否使用連續性校正的字符串。 |
data.name |
給出數據名稱的字符串。 |
例子
## Agresti (1990), p. 350.
## Presidential Approval Ratings.
## Approval of the President's performance in office in two surveys,
## one month apart, for a random sample of 1600 voting-age Americans.
Performance <-
matrix(c(794, 86, 150, 570),
nrow = 2,
dimnames = list("1st Survey" = c("Approve", "Disapprove"),
"2nd Survey" = c("Approve", "Disapprove")))
Performance
mcnemar.test(Performance)
## => significant change (in fact, drop) in approval ratings
參考
Alan Agresti (1990). Categorical data analysis. New York: Wiley. Pages 350-354.
相關用法
- R medpolish 矩陣的中值波蘭(穩健雙向分解)
- R model.matrix 構建設計矩陣
- R mood.test 情緒二樣本量表檢驗
- R mantelhaen.test 計數數據的 Cochran-Mantel-Haenszel 卡方檢驗
- R monthplot 繪製時間序列中的季節性或其他子序列
- R mahalanobis 馬哈拉諾比斯距離
- R manova 多變量方差分析
- R make.link 為 GLM 家庭創建鏈接
- R model.tables 計算 Aov 模型擬合的結果表
- R model.extract 從模型框架中提取組件
- R median 中值
- R makepredictcall 用於安全預測的實用函數
- R mauchly.test 莫奇利球形度檢驗
- R model.frame 從公式或擬合中提取模型框架
- 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大神的英文原創作品 McNemar's Chi-squared Test for Count Data。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。