coef.glmm: Extract Model Coefficients

View source: R/summary.mcla.R

coef.glmmR 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 glmm usually created using glmm.

...

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)


glmm documentation built on Oct. 10, 2022, 1:06 a.m.