Skip to content

SE of parameter estimates in glmm.admb

1 message · Hans Skaug

#
Dear Istvan,

An example

  library(glmmADMB)

  tt = glmm.admb(y ~ Base * trt + Age, random = ~Visit,group = "subject", data = epil2, family = "nbinom")

To print the covariance matrix of the random effects vector (and the std of those estimates, see bottom) :

  print.glmm.admb(tt,sd_S_print=TRUE)

Have a look at ?print.glmm.admb.

To get the std's of the beta's (fixed effects) you type:

  tt$stdbeta

I will try to find a better way to get access to the latter.

Use "names(tt)" to see what objects there are. 

hans