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.
as_hux_table(
x,
include = everything(),
return_calls = FALSE,
strip_md_bold = FALSE
)
Object created by a function from the gtsummary package (e.g. tbl_summary or tbl_regression)
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 everything()
.
Logical. Default is FALSE
. If TRUE
, the calls are returned
as a list of expressions.
When TRUE, all double asterisk (markdown language for bold weight) in column labels and spanning headers are removed.
A huxtable object
The as_hux_table()
takes the data frame that will be printed, converts
it to a huxtable and formats the table with the following huxtable functions:
huxtable::huxtable()
huxtable::insert_row()
to insert header rows
huxtable::set_left_padding()
to indent variable levels
huxtable::add_footnote()
to add table footnotes and source notes
huxtable::set_bold()
to bold cells
huxtable::set_italic()
to italicize cells
huxtable::set_top_border()
add horizontal line (when indicated)
huxtable::set_na_string()
to use an em-dash for missing numbers
huxtable::set_markdown()
use markdown for header rows
huxtable::set_align()
to set column alignment
Any one of these commands may be omitted using the include=
argument.
Other gtsummary output types:
as_flex_table()
,
as_gt()
,
as_kable_extra()
,
as_kable()
,
as_tibble.gtsummary()
# NOT RUN {
trial %>%
dplyr::select(trt, age, grade) %>%
tbl_summary(by = trt) %>%
add_p() %>%
as_hux_table()
# }
Run the code above in your browser using DataLab