xplode: Extract values from a fitted GLMM object

Description Usage Arguments Details See Also Examples

View source: R/xplode.R

Description

Extract values from an object of class merMod (more specifically, from an object of subclass glmerMod).

Usage

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

See Also

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

Examples

1
2
3
4
5
6
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)

MixedPsy documentation built on Nov. 9, 2021, 1:08 a.m.