R語言
glm.control
位於 stats
包(package)。 說明
glm
擬合的輔助函數。通常僅由 glm.fit
內部使用,但可用於構造任一函數的 control
參數。
用法
glm.control(epsilon = 1e-8, maxit = 25, trace = FALSE)
參數
epsilon |
正收斂容差 ;當 時迭代收斂。 |
maxit |
給出 IWLS 迭代最大次數的整數。 |
trace |
邏輯指示是否應為每次迭代生成輸出。 |
細節
glm
的 control
參數默認傳遞給 glm.fit
的 control
參數,後者使用其元素作為 glm.control
的參數:後者提供默認值和健全性檢查。
如果 epsilon
很小(小於 ),它也用作最小二乘解中共線性檢測的容差。
當 trace
為 true 時,對 cat
的調用會生成每次 IWLS 迭代的輸出。因此,options(digits = *)
可用於提高精度,請參見示例。
值
包含命名為參數的組件的列表。
例子
### A variation on example(glm) :
## Annette Dobson's example ...
counts <- c(18,17,15,20,10,20,25,13,12)
outcome <- gl(3,1,9)
treatment <- gl(3,3)
oo <- options(digits = 12) # to see more when tracing :
glm.D93X <- glm(counts ~ outcome + treatment, family = poisson(),
trace = TRUE, epsilon = 1e-14)
options(oo)
coef(glm.D93X) # the last two are closer to 0 than in ?glm's glm.D93
參考
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.
也可以看看
相關用法
- R glm.summaries 訪問廣義線性模型擬合
- R glm 擬合廣義線性模型
- R getInitial 獲取初始參數估計
- R stlmethods STL 對象的方法
- R medpolish 矩陣的中值波蘭(穩健雙向分解)
- 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 decompose 移動平均線的經典季節性分解
- R plot.stepfun 繪製階躍函數
- R alias 查找模型中的別名(依賴項)
- R qqnorm 分位數-分位數圖
- R eff.aovlist 多層方差分析的計算效率
- R pairwise.t.test 成對 t 檢驗
- R loglin 擬合對數線性模型
- R predict.smooth.spline 通過平滑樣條擬合進行預測
- R bartlett.test 方差齊性的 Bartlett 檢驗
- R influence.measures 回歸刪除診斷
- R loess.control 設置黃土參數
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Auxiliary for Controlling GLM Fitting。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。