bold_p {gtsummary} | R Documentation |
Bold significant p-values
Description
Bold values below a chosen threshold (e.g. <0.05) in a gtsummary tables.
Usage
bold_p(x, t = 0.05, q = FALSE)
Arguments
x |
( |
t |
(scalar |
q |
(scalar |
Author(s)
Daniel D. Sjoberg, Esther Drill
Examples
# Example 1 ----------------------------------
trial |>
tbl_summary(by = trt, include = c(response, marker, trt), missing = "no") |>
add_p() |>
bold_p(t = 0.1)
# Example 2 ----------------------------------
glm(response ~ trt + grade, trial, family = binomial(link = "logit")) |>
tbl_regression(exponentiate = TRUE) |>
bold_p(t = 0.65)
[Package gtsummary version 2.0.0 Index]