Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Dec 23, 2024
1 parent 4dbf894 commit b7619a5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions R/data_xtabulate.R
Original file line number Diff line number Diff line change
Expand Up @@ -340,16 +340,16 @@ print_html.datawizard_crosstabs <- function(x, big_mark = NULL, ...) {
# now reorder and bind
out <- do.call(rbind, x)
out$Variable[duplicated(out$Variable)] <- ""
# print table
cat(insight::export_table(
out,
cross = "+",
missing = ifelse(identical(format, "text"), "<NA>", "(NA)"),
empty_line = "-",
format = format,
by = "groups"
))
}
# print table
cat(insight::export_table(
out,
cross = "+",
missing = ifelse(identical(format, "text"), "<NA>", "(NA)"),
empty_line = "-",
format = format,
by = "groups"
))
}


Expand Down

0 comments on commit b7619a5

Please sign in to comment.