diff --git a/tutorials/docs-12-using-turing-guide/index.qmd b/tutorials/docs-12-using-turing-guide/index.qmd index 565440296..fcf757629 100755 --- a/tutorials/docs-12-using-turing-guide/index.qmd +++ b/tutorials/docs-12-using-turing-guide/index.qmd @@ -280,7 +280,7 @@ end # Construct a model with x = missing model = gdemo(missing) -c = sample(model, HMC(0.01, 5), 500) +c = sample(model, HMC(0.05, 20), 1000) ``` Note the need to initialize `x` when missing since we are iterating over its elements later in the model. The generated values for `x` can be extracted from the `Chains` object using `c[:x]`.