glmmPQL
位於 MASS
包(package)。 說明
使用 Penalized Quasi-Likelihood 擬合具有多元正態隨機效應的 GLMM 模型。
用法
glmmPQL(fixed, random, family, data, correlation, weights,
control, niter = 10, verbose = TRUE, ...)
參數
fixed |
給出模型的 fixed-effects 部分的雙邊線性公式。 |
random |
說明隨機效應的公式或公式列表。 |
family |
一個 GLM 家庭。 |
data |
可選 DataFrame 、列表或環境,用作在公式 |
correlation |
可選的相關結構。 |
weights |
可選的大小寫權重如 |
control |
要傳遞給 |
niter |
最大迭代次數。 |
verbose |
邏輯:打印出迭代記錄? |
... |
|
細節
glmmPQL
通過重複調用 lme
來工作,因此命名空間 nlme
將在第一次使用時加載。 (2015 年之前,它曾經附加 nlme
,但現在僅加載命名空間。)
與 lme
不同,fixed
中允許 offset
術語 - 這是通過對 lme
的 pre- 和 post-processing 調用來完成的。
請注意,返回的對象繼承自類"lme"
,並且大多數泛型將使用該類的方法。從版本 3.1-158 開始,擬合值包含任何偏移量,調用 predict
的結果也是如此。
值
類 c("glmmPQL", "lme")
的對象:參見 lmeObject
。
例子
summary(glmmPQL(y ~ trt + I(week > 2), random = ~ 1 | ID,
family = binomial, data = bacteria))
## an example of an offset: the coefficient of 'week' changes by one.
summary(glmmPQL(y ~ trt + week, random = ~ 1 | ID,
family = binomial, data = bacteria))
summary(glmmPQL(y ~ trt + week + offset(week), random = ~ 1 | ID,
family = binomial, data = bacteria))
參考
Schall, R. (1991) Estimation in generalized linear models with random effects. Biometrika 78, 719-727.
Breslow, N. E. and Clayton, D. G. (1993) Approximate inference in generalized linear mixed models. Journal of the American Statistical Association 88, 9-25.
Wolfinger, R. and O'Connell, M. (1993) Generalized linear mixed models: a pseudo-likelihood approach. Journal of Statistical Computation and Simulation 48, 233-243.
Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. Fourth edition. Springer.
也可以看看
相關用法
- R glm.nb 擬合負二項式廣義線性模型
- R glm.convert 將負二項式擬合更改為 GLM 擬合
- R ginv 廣義逆矩陣
- R geyser 老忠實間歇泉數據
- R gamma.shape 估計 GLM 擬合中 Gamma 分布的形狀參數
- R gilgais 吉爾蓋地區土壤線橫斷麵
- R genotype 大鼠基因型數據
- R gehan 白血病患者的緩解時間
- R gamma.dispersion 計算 GLM 擬合中伽馬色散參數的 MLE
- R galaxies 82 個星係的速度
- R summary.rlm 魯棒線性模型的總結方法
- R housing 哥本哈根住房條件調查的頻率表
- R biopsy 乳腺癌患者的活檢數據
- R predict.qda 根據二次判別分析進行分類
- R contr.sdif 連續差異對比編碼
- R Melanoma 惡性黑色素瘤的生存率
- R boxcox 線性模型的 Box-Cox 變換
- R predict.glmmPQL glmmPQL 擬合的預測方法
- R ucv 帶寬選擇的無偏交叉驗證
- R theta.md 估計負二項式的 theta
- R parcoord 平行坐標圖
- R rlm 線性模型的穩健擬合
- R npk 經典 N、P、K 階乘實驗
- R Cars93 1993 年美國銷售的 93 輛汽車的數據
- R predict.lda 通過線性判別對多變量觀測值進行分類
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Fit Generalized Linear Mixed Models via PQL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。