Skip to content

Commit

Permalink
pass ...
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Nov 3, 2024
1 parent 14d16d8 commit 3117387
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions R/data_tabulate.R
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,8 @@ print.datawizard_table <- function(x, big_mark = NULL, ...) {
cat(insight::export_table(
format(x, big_mark = big_mark, ...),
cross = "+",
missing = "<NA>"
missing = "<NA>",
...
))
invisible(x)
}
Expand Down Expand Up @@ -621,7 +622,8 @@ print.datawizard_tables <- function(x, big_mark = NULL, ...) {
out,
missing = "<NA>",
cross = "+",
empty_line = "-"
empty_line = "-",
...
))
}
}
Expand Down
3 changes: 2 additions & 1 deletion R/data_xtabulate.R
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ print.datawizard_crosstab <- function(x, big_mark = NULL, ...) {
cross = "+",
missing = "<NA>",
caption = caption,
empty_line = "-"
empty_line = "-",
...
))
invisible(x)
}
Expand Down
2 changes: 1 addition & 1 deletion R/describe_distribution.R
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ print.parameters_distribution <- function(x, digits = 2, ...) {
ci_brackets = TRUE,
...
)
cat(insight::export_table(formatted_table, format = "text", digits = digits))
cat(insight::export_table(formatted_table, format = "text", digits = digits, ...))
invisible(x)
}

Expand Down

0 comments on commit 3117387

Please sign in to comment.