as_hux_table: 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.
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().
return_calls
Logical. Default is FALSE. If TRUE, the calls are returned
as a list of expressions.
strip_md_bold
When TRUE, all double asterisk (markdown language for
bold weight) in column labels and spanning headers are removed.
Value
A huxtable object
Details
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.