Model of class lmerMod

lmerMod_5

Format

An object of class lmerMod of length 1.

Examples

data <- iris data$Cat1 <- rep(c("X", "X", "Y"), length.out = nrow(data)) data$Cat2 <- rep(c("A", "B"), length.out = nrow(data)) lme4::lmer(Petal.Width ~ Cat1 + (1 + Cat1 | Species), data = data)
#> Linear mixed model fit by REML ['lmerMod'] #> Formula: Petal.Width ~ Cat1 + (1 + Cat1 | Species) #> Data: data #> REML criterion at convergence: -30.9245 #> Random effects: #> Groups Name Std.Dev. Corr #> Species (Intercept) 0.92375 #> Cat1Y 0.08759 -0.95 #> Residual 0.20186 #> Number of obs: 150, groups: Species, 3 #> Fixed Effects: #> (Intercept) Cat1Y #> 1.21079 -0.03273