R/s3methods.R
fixef.fastlmm.Rd
Extract Fixed Effects
# S3 method for class 'fastlmm' fixef(object, ...)
fitted model of class fastlmm
fastlmm
other args, not used
library(MASS) # GLMM via PQL fit <- fastglmm(y ~ trt + I(week > 2) + (1 | ID), family = binomial(), data = bacteria) fixef(fit) #> (Intercept) trtdrug trtdrug+ I(week > 2)TRUE #> 3.4127450 -1.2475583 -0.7545406 -1.6075955