as_hux_table {gtsummary} | R Documentation |
Convert gtsummary object to a huxtable object
Description
Function converts a gtsummary object to a huxtable object. A user can use this function if they wish to add customized formatting available via the huxtable functions. The huxtable package supports output to PDF via LaTeX, as well as HTML and Word.
Usage
as_hux_table(
x,
include = everything(),
return_calls = FALSE,
strip_md_bold = FALSE
)
as_hux_xlsx(x, file, include = everything(), bold_header_rows = TRUE)
Arguments
x |
( |
include |
Commands to include in output. Input may be a vector of
quoted or unquoted names. tidyselect and gtsummary select helper
functions are also accepted.
Default is |
return_calls |
Logical. Default is |
strip_md_bold |
|
file |
File path for the output. |
bold_header_rows |
(scalar |
Value
A {huxtable} object
Excel Output
Use the as_hux_xlsx()
function to save a copy of the table in an excel file.
The file is saved using huxtable::quick_xlsx()
.
Author(s)
David Hugh-Jones, Daniel D. Sjoberg
Examples
trial |>
tbl_summary(by = trt, include = c(age, grade)) |>
add_p() |>
as_hux_table()