as.data.frame.ls_means: Coerce 'ls_means' Objects to 'data.frame's

Description Usage Arguments Author(s) See Also Examples

View source: R/ls_means.R

Description

Coerce ls_means Objects to data.frames

Usage

1
2
## S3 method for class 'ls_means'
as.data.frame(x, ..., add_levels = TRUE)

Arguments

x

an ls_means object.

...

currently not used.

add_levels

add term and levels columns to returned data.frame?

Author(s)

Rune Haubo B. Christensen

See Also

ls_means.lmerModLmerTest

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Fit example model:
data("cake", package="lme4")
cake$Temp <- factor(cake$temperature, ordered = FALSE)
model <- lmer(angle ~ recipe + Temp + (1|recipe:replicate), cake)

# Extract LS-means:
head(lsm <- ls_means(model))

# Coerce LS-means objects to data.frames:
head(as.data.frame(lsm))
head(as.data.frame(lsm, add_levels=FALSE))

runehaubo/lmerTestR documentation built on Oct. 24, 2020, 12:20 p.m.