xplode {MixedPsy} | R Documentation |
Extract values from a fitted GLMM object
Description
Extract values from an object of class merMod
(more specifically, from an object of subclass glmerMod
).
Usage
xplode(model.obj, name.cont = NA, name.factor = NA, names.response = NA)
Arguments
model.obj |
The GLMM fitted with |
name.cont |
A string providing the name of the continuous predictor, as in the formula object of the fitted model |
name.factor |
A string providing the name of name of the categorical predictor, as in the formula object of the fitted model |
names.response |
Optional. A string providing the name of name of the response variable, as in the formula object of the fitted model |
Details
For simplicity and maintenance reasons, several MixedPsy
functions take as input an
object of class xplode
instead of an object of class merMod
.
See Also
merMod-class
and glmer
.
MixDelta
, MixPlot
for use of objects of class xplode
.
Examples
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)
[Package MixedPsy version 1.1.0 Index]