coxme
, glmer
, and
lmekin
Fitcoxme
, glmer
, lmer
, and
lmekin
and adds the appropriate labels.extractSE(mod, ...)## S3 method for class 'coxme':
extractSE(mod, \dots)
## S3 method for class 'lmekin':
extractSE(mod, \dots)
## S3 method for class 'mer':
extractSE(mod, \dots)
## S3 method for class 'merMod':
extractSE(mod, \dots)
coxme
, lmekin
, mer
or merMod
class.vcov.coxme
,
vcov.lmekin
, vcov.mer
, and vcov.merMod
. Some of
these functions are called by modavg
, depending on the class of
the objects.modavg
, glmer
,
lmer
, coxme
,
lmekin
##modified example from ?glmer
if(require(lme4)) {
##create proportion of incidence
cbpp$prop <- cbpp$incidence/cbpp$size
gm1 <- glmer(prop ~ period + (1 | herd), family = binomial,
weights = size, data = cbpp)
##print summary
summary(gm1)
##extract variance-covariance matrix of fixed effects
vcov(gm1)
##extract SE's of fixed effects - no labels
sqrt(diag(vcov(gm1))) #no labels
extractSE(gm1) #with labels
detach(package:lme4)
}
Run the code above in your browser using DataLab