Skip to content
Prev 82882 / 398502 Next

lme4: Extract fixed effects Val, SE, t, p

Zev Ross <zev <at> zevross.com> writes:
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 <- object at fixed
              useScale <- object at useScale
....

You might be able to write your own code using the outline given there, but you 
could run into trouble with method getFixDF.

Dieter