Extract values from a fitted GLMM object
Extract values from an object of class merMod
(more specifically, from an object of subclass glmerMod
).
xplode(model.obj, name.cont = NA, name.factor = NA, names.response = NA)
model.obj
: The GLMM fitted with glmer
. An object of class "merMod"
.name.cont
: A string providing the name of the continuous predictor, as in the formula object of the fitted modelname.factor
: A string providing the name of name of the categorical predictor, as in the formula object of the fitted modelnames.response
: Optional. A string providing the name of name of the response variable, as in the formula object of the fitted modelFor simplicity and maintenance reasons, several MixedPsy
functions take as input an object of class xplode
instead of an object of class merMod
.
library(lme4) multi.mod <- glmer(cbind(faster, slower) ~ speed * vibration + (1 + speed| subject), family = binomial(link = "probit"), data = vibro_exp3) xplode.mod <- xplode(multi.mod, name.cont = "speed", name.factor = "vibration") MixPlot(xplode.mod) MixDelta(xplode.mod)
merMod-class
and glmer
. MixDelta
, MixPlot
for use of objects of class xplode
.