Skip to content

Commit ea8df35

Browse files
committed
Update visual-mcmc-diagnostics.Rmd
1 parent 4e34fb0 commit ea8df35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vignettes/visual-mcmc-diagnostics.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ schools_mod_ncp <- stan_model("schools_mod_ncp.stan")
154154
We then fit the model by calling Stan's MCMC algorithm using the `sampling`
155155
function (the increased `adapt_delta` param is to make the sampler a bit more "careful" and avoid false positive divergences),
156156
```{r fit-models-hidden, results='hide', message=FALSE}
157-
fit_cp <- sampling(schools_mod_cp, data = schools_dat, seed = 803214053, control = list(adapt_delta = 0.9))
157+
fit_cp <- sampling(schools_mod_cp, data = schools_dat, seed = 803214054, control = list(adapt_delta = 0.9))
158158
fit_ncp <- sampling(schools_mod_ncp, data = schools_dat, seed = 457721433, control = list(adapt_delta = 0.9))
159159
```
160160
and extract a `iterations x chains x parameters` array of posterior draws with

0 commit comments

Comments
 (0)