From 77a024f5bfa944bb55c3775980d13fe24a14e12a Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 25 Mar 2024 14:37:08 +0100 Subject: [PATCH] minor --- vignettes/simulate_residuals.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/simulate_residuals.Rmd b/vignettes/simulate_residuals.Rmd index dd78e4352..89f826ba6 100644 --- a/vignettes/simulate_residuals.Rmd +++ b/vignettes/simulate_residuals.Rmd @@ -96,7 +96,7 @@ The above three functions internally call `simulate_residuals()` for more comple Finally, you can even perform a visual check for the entire model, either by passing the model object directly, or the object returned from `simulate_residuals()`. ```{r fig.height=12, fig.width=10} -check_model(simulated_residuals) +check_model(simulated_residuals, dot_size = 1.5) ``` The `check_model()` function is the main reason we don't want to prematurely extract the residuals in `simulate_residuals()`, because if we do then the simulated residual won't contain the model fit (`fittedModel` in the output below), so we won't be able to do all of the checks we would want to do using the model (e.g., posterior predictive checks).