Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion largescaledesigned.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,9 @@ The amount of time to fit more complex models will be much greater so we may wan
We can split the tasks of fitting and analyzing a model between computers by saving the optimization summary after the model fit and later creating the `MixedModel` object followed by restoring the `optsum` object.

```{julia}
saveoptsum("./optsums/elm01.json", elm01);
let file = "./optsums/elm01.json"
!isfile(file) && saveoptsum(file, elm01);
end
```

```{julia}
Expand Down
Loading