coef.glmm {glmm} | R Documentation |
Extract Model Coefficients
Description
A function that extracts the fixed effect coefficients returned from glmm
.
Usage
## S3 method for class 'glmm'
coef(object,...)
Arguments
object |
An object of class |
... |
further arguments passed to or from other methods. |
Value
coefficients |
A vector of coefficients (fixed effects only) |
Author(s)
Christina Knudson
See Also
glmm
for model fitting.
Examples
library(glmm)
set.seed(1234)
data(salamander)
m<-1000
sal<-glmm(Mate~0+Cross,random=list(~0+Female,~0+Male),varcomps.names=c("F","M"),
data=salamander,family.glmm=bernoulli.glmm,m=m,debug=TRUE,doPQL=FALSE)
coef(sal)
[Package glmm version 1.4.4 Index]