It’s possible to set themes in {gtsummary}. The themes control many aspects of how a table is printed. Function defaults can be controlled with themes, as well as other aspects that are not modifiable with function arguments.
The {gtsummary} package comes with a few themes, and we welcome
user-contributed themes as well! Our focus is tables that are ready for
publication and encourage themes that assist in that process; for
example, the theme_gtsummary_journal(journal = "jama")
theme sets defaults that align with the published
guidelines from the Journal of the American Medical
Association—JAMA. The defaults in {gtsummary} were written
to align with the reporting guidelines for European Urology,
The Journal of Urology, Urology, and the British
Journal of Urology International.
To set a pre-defined theme, simply include the theme function in a script or the R console.
theme_gtsummary_journal(journal = "jama")
Use the set_gtsummary_theme()
function to set
user-defined themes (more on that below).
set_gtsummary_theme(my_custom_theme)
Themes must be set before you create the {gtsummary} tables. Let’s take a look at the default table, comparing data between treatment groups.
library(gtsummary); library(gt); library(dplyr)
%>%
trial select(trt, age, grade) %>%
tbl_summary(by = trt) %>%
add_p()
Characteristic | Drug A, N = 981 | Drug B, N = 1021 | p-value2 |
---|---|---|---|
Age | 46 (37, 59) | 48 (39, 56) | 0.7 |
Unknown | 7 | 4 | |
Grade | 0.9 | ||
I | 35 (36%) | 33 (32%) | |
II | 32 (33%) | 36 (35%) | |
III | 31 (32%) | 33 (32%) | |
1 Median (IQR); n (%) | |||
2 Wilcoxon rank sum test; Pearson's Chi-squared test |
Now, the same code with the JAMA theme.
theme_gtsummary_journal(journal = "jama")
#> Setting theme `JAMA`
Characteristic | Drug A, N = 98 | Drug B, N = 102 | p-value1 |
---|---|---|---|
Age, Median (IQR) | 46 (37 – 59) | 48 (39 – 56) | 0.72 |
Unknown | 7 | 4 | |
Grade, n (%) | 0.87 | ||
I | 35 (36) | 33 (32) | |
II | 32 (33) | 36 (35) | |
III | 31 (32) | 33 (32) | |
1 Wilcoxon rank sum test; Pearson's Chi-squared test |
By setting the theme, we were able to change the default formatting for the p-value and add a dash between the 25th and 75th percentiles.
Themes can be stacked as well. In the example below, the JAMA theme and the compact theme (reduces font size and cell padding) are both called and both themes are utilized.
theme_gtsummary_journal(journal = "jama")
#> Setting theme `JAMA`
theme_gtsummary_compact()
#> Setting theme `Compact`
Characteristic | Drug A, N = 98 | Drug B, N = 102 | p-value1 |
---|---|---|---|
Age, Median (IQR) | 46 (37 – 59) | 48 (39 – 56) | 0.72 |
Unknown | 7 | 4 | |
Grade, n (%) | 0.87 | ||
I | 35 (36) | 33 (32) | |
II | 32 (33) | 36 (35) | |
III | 31 (32) | 33 (32) | |
1 Wilcoxon rank sum test; Pearson's Chi-squared test |
All {gtsummary} tables can be translated into another language using
theme_gtsummary_language()
!
Característica | Drug A, N = 98 | Drug B, N = 102 | p-valor1 |
---|---|---|---|
Age, Mediana (RIQ) | 46 (37 – 59) | 48 (39 – 56) | 0.72 |
Desconocido | 7 | 4 | |
Grade, n (%) | 0.87 | ||
I | 35 (36) | 33 (32) | |
II | 32 (33) | 36 (35) | |
III | 31 (32) | 33 (32) | |
1 Prueba de la suma de rangos de Wilcoxon; prueba chi cuadrado de independencia |
Clear all previously set themes using
reset_gtsummary_theme()
.
reset_gtsummary_theme()
There are many parts of a {gtsummary} table that may be controlled
with theme elements. To construct a personalized theme, create a named
list of at least one theme element. Here’s an example of a theme that
modifies the function that styles p-values and updates the default
statistics reported in tbl_summary()
.
<-
my_theme list(
# round large p-values to two places
"pkgwide-fn:pvalue_fun" = function(x) style_pvalue(x, digits = 2),
"pkgwide-fn:prependpvalue_fun" = function(x) style_pvalue(x, digits = 2, prepend_p = TRUE),
# report median (IQR) and n (percent) as default stats in `tbl_summary()`
"tbl_summary-str:continuous_stat" = "{median} ({p25} - {p75})",
"tbl_summary-str:categorical_stat" = "{n} ({p})"
)
Once you create the theme, first check the structure using
check_gtsummary_theme()
. Then apply or set the theme with
set_gtsummary_theme()
.
set_gtsummary_theme(my_theme)
Each theme element follows a naming structure:
"<function name>-<input type>:<description>"
.
The function name is the function the change applies to, the input type
specifies class or type of the theme element, and the description is
brief text characterizing the theme element.
Theme elements fall into two categories. The first is modifying internal behavior of the functions that is not directly controllable by function arguments.
Theme Element | Description | Example |
---|---|---|
add_global_p | ||
|
set argument default for |
|
|
set argument default for |
|
add_p.tbl_summary | ||
|
default test for categorical/dichotomous variables |
|
|
default test for categorical/dichotomous grouped/correlated variables with a 2-level by variable |
|
|
default test for categorical/dichotomous variables with minimum expected count <5 |
|
|
default test for continuous variables with a 3- or more level by variable |
|
|
default test for continuous grouped/correlated variables with a 2-level by variable |
|
|
default test for continuous variables with a 2-level by variable |
|
add_p.tbl_svysummary | ||
|
default test for categorical/dichotomous variables |
|
|
default test for continuous variables |
|
as_flex_table | ||
|
named list of expressions of {flextable} package commands inserted in the |
|
as_gt | ||
|
named list of expressions of {gt} package commands inserted in the |
|
as_hux_table | ||
|
named list of expressions of {huxtable} package commands inserted in the |
|
as_kable_extra | ||
|
named list of expressions of {kableExtra} package commands inserted in the |
|
Package-wide | ||
|
function to style p-values throughout package that include a "p" prefix, e.g. "p<0.001" or "p=0.12"; this is common in the |
|
|
function to style p-values throughout package; default is |
|
|
logical indicating whether to suppress messages or not; default is |
|
|
string indicating separator between upper and lower bounds of confidence intervals. Default is |
|
|
string indicating language; default is |
|
|
string indicating the default print engine; default is |
|
|
optional name of theme; name is printed when theme loaded |
|
|
function that is executed on the gtsummary object before it is converted with |
|
tbl_regression | ||
|
a function that will be executed after at the end of each |
|
|
character vector of columns from |
|
|
Additional |
|
|
string setting the default term for the beta coefficient column header; default is |
|
|
string indicating the text to print on reference rows (default is an em-dash) |
|
tbl_stack | ||
|
string indicating the group column header used in |
|
tbl_summary | ||
|
a function that will be executed after at the end of each |
|
|
function to style integers. Currently questioning...THIS MAY BE REMOVED IN A FUTURE RELEASE. Use |
|
|
function to style percentages; default is |
|
|
glue string defining the default categorical and dichotomous summary statistics to display; default is |
|
|
glue string defining the default continuous summary statistics to display; default is |
|
|
string indicating the default summary type for continuous variables; default is |
|
|
string indicating the statistic(s) to present on the missing row. The default is |
|
tbl_svysummary | ||
|
a function that will be executed after at the end of each |
|
add_difference | ||
|
a function that will be executed after at the end of each |
|
The second type of theme elements set function argument defaults. The values of these theme elements must align with the functions’ accepted input for the argument.
Theme Element |
---|
add_p.tbl_cross |
|
add_p.tbl_summary |
|
add_p.tbl_svysummary |
|
add_q |
|
add_stat_label |
|
as_kable |
|
style_number |
|
tbl_regression |
|
tbl_summary |
|
tbl_survfit |
|
tbl_svysummary |
|
tbl_custom_summary |
|