我一直在使用夢幻般的包texreg從lme4模型生成高質量的HTML表。不幸的是,默認情況下,texreg在lme4模型的係數下創建置信區間而不是標準誤差(請參閱JSS paper的第17頁)。使用texreg獲取lme4對象的標準錯誤
舉個例子:
library(lme4)
library(texreg)
screenreg(lmer(Reaction ~ Days + (Days|Subject), sleepstudy))
產生
Computing profile confidence intervals ...
Computing confidence intervals at a confidence level of 0.95. Use argument "method = 'boot'" for bootstrapped CIs.
===============================================
Model 1
-----------------------------------------------
(Intercept) 251.41 *
[237.68; 265.13]
Days 10.47 *
[ 7.36; 13.58]
-----------------------------------------------
AIC 1755.63
BIC 1774.79
Log Likelihood -871.81
Deviance 1743.63
Num. obs. 180
Num. groups: Subject 18
Variance: Subject.(Intercept) 612.09
Variance: Subject.Days 35.07
Variance: Residual 654.94
===============================================
* 0 outside the confidence interval
而且我更願意看到這樣的內容:
Computing profile confidence intervals ...
Computing confidence intervals at a confidence level of 0.95. Use argument "method = 'boot'" for bootstrapped CIs.
===============================================
Model 1
-----------------------------------------------
(Intercept) 251.41 *
(24.74)
Days 10.47 *
(5.92)
-----------------------------------------------
[output truncated for clarity]
有沒有辦法爲忽略這個行爲?就我所知,使用ci.force = FALSE選項不起作用。
我喜歡用texreg,而不是one of the other packages,因爲texreg允許我將係數組合成有意義的組。
在此先感謝您的幫助!
(UPDATE:編輯成包括一個例子)
請考慮包括一個* small * [reproducible example](http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible例如),所以我們可以更好地理解並更輕鬆地回答你的問題。 –
謝謝!我把一個。希望這有助於澄清。如果沒有,請讓我知道。再次感謝你的幫助! –