I want to extract the "standard error" of variance component from the output of "lmer" .
The following produces estimates of variance component :
It is **NOT** the standard error of the variance. And I want the standard error . How can I have it ?
Many Thanks! Regards.
Code:
library(lme4)
model <- lmer(Reaction ~ Days + (1|Subject), sleepstudy)
Code:
s2 <- VarCorr(model)$Subject[1]
Many Thanks! Regards.