I have a model and I like the following format from modelsummary
library(modelsummary)
fit <- lm(am ~ vs, data=mtcars)
modelsummary(
fit,
statistic = c('std.error', 'p.value', 'conf.int'),
gof_map = NA,
shape= term ~ statistic
)
However, the confidence interval limits are reffered to as 2.5% and 97.5%. Can I somehow rename them to something like "CI Lower/Upper"?

Version 2.0.0 of
modelsummarywill be released in the next few days with built-in support for this. You can install it now with:Then,