We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 306c92e commit 62d1886Copy full SHA for 62d1886
2 files changed
NEWS.md
@@ -1,5 +1,6 @@
1
# bayesplot (development version)
2
3
+* Fix assignment-in-call bug in `mcmc_trace_ucdf`/`mcmc_trace_rcdf`: `L <- n_chain` (which leaked `L` into the calling environment) corrected to `L = n_chain` (#).
4
* New functions `mcmc_dots` and `mcmc_dots_by_chain` for dot plots of MCMC draws by @behramulukir (#402)
5
* Default to `quantiles=100` for all dot plots by @behramulukir (#402)
6
R/mcmc-traces.R
@@ -508,7 +508,7 @@ mcmc_rank_ecdf <-
508
} else {
509
K
510
},
511
- L <- n_chain
+ L = n_chain
512
)
513
data_lim <- data.frame(
514
upper = lims$upper / n_iter - (plot_diff == TRUE) * x,
0 commit comments