Zev Ross <zev <at> zevross.com> writes:
> Using glmmPQL you can extract the full table of estimates, SE, p-values
> etc using as an example:
>
> mymodel<-glmmPQL(mymodel here)
>
> summary(mymodel)[[18]]
>
> How can I pull this table out of a lmer object in lme4?
Looks like it is not so easy, the code that produces the table is rather hidden
in Matrix\r\lmer.R, about line 400
setMethod("show", "summary.lmer",
function(object) {
fcoef <- [EMAIL PROTECTED]
useScale <- [EMAIL PROTECTED]
....
You might be able to write your own code using the outline given there, but you
could run into trouble with method getFixDF.
Dieter
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html