Skip to content

Commit

Permalink
random statement changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidhuharp97 committed Aug 19, 2024
1 parent b20929b commit 7d41479
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion chapters/lattice-design.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ summary(m1)
```{r, eval=FALSE}
## lme not working for this, need help in fixing it
m1 <- lme(yield ~ gen,
random = ~ 1|rep + 1|rep:row + 1|rep:col,
random = list(rep = ~ 1, rep|row = ~1, rep|col = ~1),
#random = list (~1|rep, ~1|rep:row, ~1|rep:col),
# random = ~ 1|rep + 1|rep:row + 1|rep:col,
data = dat,
na.action = na.exclude)
```
Expand Down

0 comments on commit 7d41479

Please sign in to comment.