Skip to content

Commit 891b706

Browse files
committed
Trying today's date as seed for fit_cp so Mac compiles
1 parent b1e57c8 commit 891b706

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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 = 803214055, control = list(adapt_delta = 0.9))
157+
fit_cp <- sampling(schools_mod_cp, data = schools_dat, seed = 20251208, 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)