當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R stat.anova GLM 方差分析統計


R語言 stat.anova 位於 stats 包(package)。

說明

這是一個實用函數,用於 anova(..., test != NULL)lmglm 方法,普通用戶不應使用。

用法

stat.anova(table, test = c("Rao","LRT", "Chisq", "F", "Cp"),
           scale, df.scale, n)

參數

table

數字矩陣作為 anova.glm(..., test = NULL) 的結果。

test

一個字符串,部分匹配 "Rao""LRT""Chisq""F""Cp" 之一。

scale

用作 F 檢驗中分母的殘差均方或其他尺度估計。

df.scale

對應於 scale 的自由度。

n

觀察次數。

一個矩陣,它是原始的 table ,根據 test 參數添加一列測試統計數據。

例子

##-- Continued from '?glm':

print(ag <- anova(glm.D93))
stat.anova(ag$table, test = "Cp",
           scale = sum(resid(glm.D93, "pearson")^2)/4,
           df.scale = 4, n = 9)

參考

Hastie, T. J. and Pregibon, D. (1992) Generalized linear models. Chapter 6 of Statistical Models in S eds J. M. Chambers and T. J. Hastie, Wadsworth & Brooks/Cole.

也可以看看

anova.lmanova.glm

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 GLM Anova Statistics。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。