Skip to content

Commit

Permalink
pass ... and other args properly
Browse files Browse the repository at this point in the history
  • Loading branch information
mattansb committed Sep 5, 2024
1 parent c3a5c51 commit dad11b3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions R/describe_posterior.R
Original file line number Diff line number Diff line change
Expand Up @@ -383,11 +383,11 @@ describe_posterior.default <- function(posterior, ...) {
dot_args <- list(...)
dot_args$verbose <- !"rope" %in% test
test_equi <- .prepare_output(
equivalence_test(x_df,
range = rope_range,
ci = rope_ci,
dot_args
),
do.call(equivalence_test,
c(dot_args,
list(x = x_df,
range = rope_range,
ci = rope_ci))),
cleaned_parameters,
is_stanmvreg
)
Expand Down

0 comments on commit dad11b3

Please sign in to comment.