From 31173875b55979219b0418a6da2fade62066db0b Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 3 Nov 2024 11:55:49 +0100 Subject: [PATCH] pass ... --- R/data_tabulate.R | 6 ++++-- R/data_xtabulate.R | 3 ++- R/describe_distribution.R | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/R/data_tabulate.R b/R/data_tabulate.R index e94fc5d55..557280d26 100644 --- a/R/data_tabulate.R +++ b/R/data_tabulate.R @@ -522,7 +522,8 @@ print.datawizard_table <- function(x, big_mark = NULL, ...) { cat(insight::export_table( format(x, big_mark = big_mark, ...), cross = "+", - missing = "" + missing = "", + ... )) invisible(x) } @@ -621,7 +622,8 @@ print.datawizard_tables <- function(x, big_mark = NULL, ...) { out, missing = "", cross = "+", - empty_line = "-" + empty_line = "-", + ... )) } } diff --git a/R/data_xtabulate.R b/R/data_xtabulate.R index 08be1eeca..c9595eccf 100644 --- a/R/data_xtabulate.R +++ b/R/data_xtabulate.R @@ -198,7 +198,8 @@ print.datawizard_crosstab <- function(x, big_mark = NULL, ...) { cross = "+", missing = "", caption = caption, - empty_line = "-" + empty_line = "-", + ... )) invisible(x) } diff --git a/R/describe_distribution.R b/R/describe_distribution.R index 2e61c1dc3..64f6e29c1 100644 --- a/R/describe_distribution.R +++ b/R/describe_distribution.R @@ -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) }