Displaying 1 result from an estimated 1 matches for "x_temp".
Did you mean:
_temp
2009 Nov 03
1
lmer and estimable
...rting place. But this is only a guess - if anyone could either confirm or otherwise explain this unexpected-to-me happening, that'd be fantastic!!
The code that I'm running is:
design.1 = rbind(c(0,0,0,1,0,0,0,0,0,0,0,0))
lme1 <- lmer(var_x~AGE*GENDER*DAM_DIET + (1|CHIP) + (1|LITTER),x_temp)
est <- estimable(lme1,design.1)
print(est)
est <- estimable(lme1,design.1) # Repeat of code
print(est)
est <- estimable(lme1,design.1) # Another repeat of code
print(est)
And this is the output - you can see in this that the results vary each time the code is run...
> pri...