getFE | R Documentation |
Fixed effects from linear mixed model
getFE(model, ci.level = 0.95, round = 2, p.round = 3)
model |
Fitted model with lmerTest. |
ci.level |
Width of confidence intervals. |
round |
Rounding for all but p-values (default 2). |
p.round |
Rounding for p-values (default 3). |
A formatted data frame of fixed effects.
set.seed(234) n1 <- 3 # groups n2 <- 3 # observations per groups dat <- data.frame( group = rep(c(LETTERS[1:n1]), each = n2), x1 = sample(1:5, n1 * n2, replace = TRUE), x2 = sample(1:5, n1 * n2, replace = TRUE), x3 = sample(1:5, n1 * n2, replace = TRUE) ) getFE(lmerTest::lmer(x1 ~ x2 + x3 + (1 | group), data = dat, REML = FALSE))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.