I'm trying to extract the value of the Variance from a Random Effects model built in R, using the lme4 package:
Linear mixed model fit by REML ['lmerMod']
Formula: PH ~ (1 | gen) + rep
Data: tab
REML criterion at convergence: 591.3
Scaled residuals:
Min 1Q Median 3Q Max
-2.09030 -0.53055 0.04938 0.66689 2.02929
Random effects:
Groups Name Variance Std.Dev.
gen (Intercept) 34.99 5.915
Residual 75.16 8.670
Number of obs: 80, groups: gen, 40
Fixed effects:
Estimate Std. Error t value
(Intercept) 296.268 3.205 92.45
rep 8.550 1.939 4.41
Correlation of Fixed Effects:
(Intr)
rep -0.907
I'm interested in the Random effects section - the Variance for the "gen" Group (the value is 34.99). Can anyone help?