Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
PharmCat committed Dec 17, 2024
1 parent 7ea2cf5 commit 2972bce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ Unstructured covariance example.
Metida result:

```@example lmmexample
lmm = Metida.LMM(@formula(response~factor), ftdf3;
lmm = Metida.LMM(@formula(response~factor), rds2;
random = Metida.VarEffect(Metida.@covstr(r1|subject), UN),
)
Metida.fit!(lmm)
Expand All @@ -194,6 +194,6 @@ Metida.fit!(lmm)
MixedModels result:

```@example lmmexample
mm = fit(MixedModel, @formula(response ~ factor+ (0+r1|subject)), ftdf3, REML = true)
mm = fit(MixedModel, @formula(response ~ factor+ (0+r1|subject)), rds2, REML = true)
println(mm) #hide
```

0 comments on commit 2972bce

Please sign in to comment.