vcov.glmm {glmm} | R Documentation |
Variance-Covariance Matrix
Description
A function that calculates the variance-covariance matrix for the Monte Carlo maximum likelihood estimates returned from glmm
.
Usage
## S3 method for class 'glmm'
vcov(object,...)
Arguments
object |
An object of class |
... |
further arguments passed to or from other methods. |
Value
vcov |
The variance-covariance matrix for the parameter estimates |
Author(s)
Christina Knudson
See Also
glmm
for model fitting.
Examples
library(glmm)
data(BoothHobert)
set.seed(1234)
mod <- glmm(y~0+x1, list(y~0+z1), varcomps.names=c("z1"),
data=BoothHobert, family.glmm=bernoulli.glmm, m=100, doPQL=TRUE)
vcov(mod)
[Package glmm version 1.4.4 Index]