xplode function

Extract values from a fitted GLMM object

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)

Arguments

  • 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 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.

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)

See Also

merMod-class and glmer. MixDelta, MixPlot for use of objects of class xplode.

  • Maintainer: Alessandro Moscatelli
  • License: GPL (>= 2)
  • Last published: 2025-02-18