Hi Doug,
I couldn't find this email on the r-help list. Would you mind elaborating
**briefly** on what is elegant about this?
Eager to learn,
Hank
On Apr 7, 2008, at 12:29 PM, Douglas Bates wrote:
In case you missed it on the R-help list, I urge readers of this list
to consider the understated elegance of the code Bill Venables posted
for simulating data from a simple random effects model.
set.seed(7658943)
fph <- 0.4
Sigh <- sqrt(0.0002)
Sigi <- sqrt(0.04)
reH <- rnorm(90, fph, Sigh) ## hospid effects
dta <- within(expand.grid(hospid = 1:90, empid = 1:80),
fpi1 <- reH[hospid] + rnorm(7200, fph, Sigi))