Skip to content

Commit

Permalink
re-order arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
ddsjoberg committed May 25, 2024
1 parent 18bb852 commit 1c21b0a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions R/ard_proportion_ci.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@
ard_proportion_ci <- function(data,
variables,
by = dplyr::group_vars(data),
conf.level = 0.95,
strata = NULL,
weights = NULL,
max.iterations = 10,
method = c(
"waldcc", "wald", "clopper-pearson",
"wilson", "wilsoncc",
"strat_wilson", "strat_wilsoncc",
"agresti-coull", "jeffreys"
),
value = list(where(is_binary) ~ 1L, where(is.logical) ~ TRUE)) {
conf.level = 0.95,
value = list(where(is_binary) ~ 1L, where(is.logical) ~ TRUE),
strata = NULL,
weights = NULL,
max.iterations = 10) {
set_cli_abort_call()

# check installed packages ---------------------------------------------------
Expand Down
22 changes: 11 additions & 11 deletions man/ard_proportion_ci.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1c21b0a

Please sign in to comment.