Skip to content

Commit 9b17e00

Browse files
committed
update NEWS.md
1 parent 7f45740 commit 9b17e00

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

NEWS.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
# bayesplot 1.11.1.9000
1+
# bayesplot 1.12.0
2+
3+
* Compatibility with ggplot2 3.6.0 by @teunbrand (#337)
4+
* Ensure rank overlay plot starts at 0 even if not all bins present (#332)
5+
* Expand checking workflows to more platforms by @andrjohns in (#324)
6+
* Fix missing legends for unobserved levels in rhat and neff plots (#328)
7+
* Document problems with `ppc_stat` with `stat="mean"` (#329)
8+
* Remove deprecated functions from `available_ppc()` (#340)
9+
* Skip tests depending on Suggested dependency gridExtra if not installed by @MichaelChirico (#326)
10+
* Skip tests depending on Suggested dependency rstantools if not installed by @MichaelChirico (#325)
11+
* Update GitHub actions workflows (#338)
212

3-
Items for next release go here
413

514
# bayesplot 1.11.1
615

vignettes/visual-mcmc-diagnostics.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ us diagnose divergences. We may however zoom in to investigate, using the
449449

450450
```{r echo=FALSE}
451451
#A check that the chosen window still relevant
452-
n_divergent_in_window <- np_cp %>% filter(Parameter == "divergent__" & Value == 1 & Iteration >= 300 & Iteration <= 500) %>% nrow()
452+
n_divergent_in_window <- np_cp %>% filter(Parameter == "divergent__" & Value == 1 & Iteration >= 400 & Iteration <= 600) %>% nrow()
453453
454454
if(n_divergent_in_window < 6) {
455455
divergences <- np_cp %>% filter(Parameter == "divergent__" & Value == 1) %>% select(Iteration) %>% get("Iteration", .) %>% sort() %>% paste(collapse = ",")
@@ -458,7 +458,7 @@ if(n_divergent_in_window < 6) {
458458
```
459459

460460
```{r mcmc_trace_zoom}
461-
mcmc_trace(posterior_cp, pars = "tau", np = np_cp, window = c(300,500)) +
461+
mcmc_trace(posterior_cp, pars = "tau", np = np_cp, window = c(200,400)) +
462462
xlab("Post-warmup iteration")
463463
```
464464

0 commit comments

Comments
 (0)