summaryCI: Linear Mixed Effect Model Summary with Confidence Intervals

View source: R/summaryCI.R

summaryCIR Documentation

Linear Mixed Effect Model Summary with Confidence Intervals

Description

For a lmer model fit, displays a model summary with confidence intervals. Confidence intervals are obtained by comparing the t-statistic to the standard normal distribution, which is appropriate for models with a large number of degrees of freedom.

Usage

summaryCI(model, confidence = 0.95, digits = 3)

Arguments

model

lmer model to be summarized.

confidence

desired level of confidence for the confidence interval.

digits

integer, used for number formatting

Value

model summary including confidence intervals.

References

Baayen, R.H. (2008). Analyzing linguistic data: A practical introduction to statistics. Cambridge, UK: Cambridge University Press.

Examples

model1 <- lmer(y ~ service + (1|s) + (1|d), data=InstEval)
summaryCI(model1)

sfraundorf/psycholing documentation built on April 23, 2022, 2:50 a.m.