coef.glmm | R Documentation |
A function that extracts the fixed effect coefficients returned from glmm
.
## S3 method for class 'glmm'
coef(object,...)
object |
An object of class |
... |
further arguments passed to or from other methods. |
coefficients |
A vector of coefficients (fixed effects only) |
Christina Knudson
glmm
for model fitting.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.