Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# bayesplot (development version)

* Fix assignment-in-call bug in `mcmc_rank_ecdf()` (#).
* Replaced deprecated `dplyr` and `tidyselect` functions (`top_n`, `one_of`, `group_indices`) with their modern equivalents to ensure future compatibility. (#431)
* Documentation added for all exported `*_data()` functions (#209)
* Improved documentation for `binwidth`, `bins`, and `breaks` arguments to clarify they are passed to `ggplot2::geom_area()` and `ggdist::stat_dots()` in addition to `ggplot2::geom_histogram()`
Expand Down
2 changes: 1 addition & 1 deletion R/mcmc-traces.R
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ mcmc_rank_ecdf <-
} else {
K
},
L <- n_chain
L = n_chain
)
data_lim <- data.frame(
upper = lims$upper / n_iter - (plot_diff == TRUE) * x,
Expand Down
Loading