Skip to content

Commit 3ac1b5e

Browse files
authored
Merge pull request #454 from utkarshpawade/fix-assignment-in-call-bug
fix: replace `<-` with `=` for named argument in `ecdf_intervals()` call
2 parents 98a7245 + 24c208c commit 3ac1b5e

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

NEWS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# bayesplot (development version)
22

3+
* Fix assignment-in-call bug in `mcmc_rank_ecdf()` (#).
34
* Replaced deprecated `dplyr` and `tidyselect` functions (`top_n`, `one_of`, `group_indices`) with their modern equivalents to ensure future compatibility. (#431)
45
* Documentation added for all exported `*_data()` functions (#209)
56
* 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()`

R/mcmc-traces.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ mcmc_rank_ecdf <-
515515
} else {
516516
K
517517
},
518-
L <- n_chain
518+
L = n_chain
519519
)
520520
data_lim <- data.frame(
521521
upper = lims$upper / n_iter - (plot_diff == TRUE) * x,

0 commit comments

Comments
 (0)