From 92deddd867c0e26b6f84b9f7057656ee9a2f5371 Mon Sep 17 00:00:00 2001 From: Rich FitzJohn Date: Mon, 30 Sep 2024 18:59:11 +0100 Subject: [PATCH] Fix spelling --- vignettes/samplers.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/samplers.Rmd b/vignettes/samplers.Rmd index 88c0e369..c136eed5 100644 --- a/vignettes/samplers.Rmd +++ b/vignettes/samplers.Rmd @@ -27,7 +27,7 @@ library(monty) This example shows HMC outperforming a random walk on a two dimensional banana-shaped function. Our model takes two parameters `alpha` and `beta`, and is based on two successive simple draws, with the one conditional on the other, so $\beta \sim Normal(1,0)$ and $\alpha \sim Normal(\beta^2, \sigma)$, with $\sigma$ the standard deviation of the conditional draw. -We include this example withn the package; here we create a model with $\sigma = 0.5$ +We include this example within the package; here we create a model with $\sigma = 0.5$ ```{r} m <- monty_example("banana", sigma = 0.5)