bold_p: Bold significant p-values or q-values

View source: R/bold_p.R

bold_pR Documentation

Bold significant p-values or q-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

Object created using gtsummary functions

t

Threshold below which values will be bold. Default is 0.05.

q

Logical argument. When TRUE will bold the q-value column rather than the p-values. Default is FALSE.

Example Output

Example 1

image of rendered example table

Example 2

image of rendered example table

Author(s)

Daniel D. Sjoberg, Esther Drill

Examples


# Example 1 ----------------------------------
bold_p_ex1 <-
  trial[c("age", "grade", "response", "trt")] %>%
  tbl_summary(by = trt) %>%
  add_p() %>%
  bold_p(t = 0.65)

# Example 2 ----------------------------------
bold_p_ex2 <-
  glm(response ~ trt + grade, trial, family = binomial(link = "logit")) %>%
  tbl_regression(exponentiate = TRUE) %>%
  bold_p(t = 0.65)


ddsjoberg/gtsummary documentation built on Nov. 3, 2023, 11:42 a.m.