Where/how do I insert style_p_value argument to display 3 significant digits for the p values in this table?
if (requireNamespace("car")) {
tbl_uv_global_ex2 <-
trial[c("response", "trt", "age", "grade")] %>%
tbl_uvregression(
method = glm,
y = response,
method.args = list(family = binomial),
exponentiate = TRUE
) %>%
add_global_p()
}