You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible for the estimate_fun in tbl_regression to take a list of formulas like the estimate_fun in add_difference instead of one function?
glm(response ~ age + grade, trial, family = binomial()) |>
tbl_regression(exponentiate = TRUE,
estimate_fun = list(age ~ label_style_ratio(digits = 3)))
Thanks!
The text was updated successfully, but these errors were encountered:
I will probably keep it as it is as to not introduce a breaking change in an argument that has been around for many many years. In case you're not already aware, you can get similar functionality with modify_fmt_fn(). But I'll keep this issue open for a while and consider it further.
Would it be possible for the
estimate_fun
intbl_regression
to take a list of formulas like theestimate_fun
inadd_difference
instead of one function?Thanks!
The text was updated successfully, but these errors were encountered: