grouping.levels: Returns the levels of a grouping factor in a mixed effects...

Description Usage Arguments Details Value Author(s) Examples

Description

Helper function returning all the levels of a grouping factor in a mixed effects regression model.

Usage

1

Arguments

model

Mixed effects model of class 'mer'

group

Grouping factor of 'model' of which the levels are returned

Details

Please note that at times different results may be obtained by using nesting.levels(), compared with deriving the levels of the grouping factor directly from the (original) data. This is because nesting.levels() only extracts the nesting levels that were de facto used in the model. Due to missing values, this may diverge from those present in the actual data.

Value

Returns a character vector containing all the names / labels of levels of the grouping factor.

Author(s)

Rense Nieuwenhuis, Ben Pelzer, Manfred te Grotenhuis

Examples

1
2
3
4
5
6
7
8
 ## Not run: 
 # Penicillin data originates from the lme4 package.
 model <- lmer(diameter ~ (1|plate) + (1|sample), Penicillin)

 grouping.levels(model, "plate")
 grouping.levels(model, "sample")

## End(Not run)

influence.ME documentation built on May 2, 2019, 9:33 a.m.