coef_rename {modelsummary} | R Documentation |
Rename model terms
Description
A convenience function which can be passed to the coef_rename
argument of
the modelsummary
function.
Usage
coef_rename(
x,
factor = TRUE,
factor_name = TRUE,
backticks = TRUE,
titlecase = TRUE,
underscore = TRUE,
asis = TRUE
)
Arguments
x |
character vector of term names to transform |
factor |
boolean remove the "factor()" label |
factor_name |
boolean remove the "factor()" label and the name of the variable |
backticks |
boolean remove backticks |
titlecase |
boolean convert to title case |
underscore |
boolean replace underscores by spaces |
asis |
boolean remove the |
Examples
library(modelsummary) dat <- mtcars dat$horse_power <- dat$hp mod <- lm(mpg ~ horse_power + factor(cyl), dat) modelsummary(mod, coef_rename = coef_rename)
[Package modelsummary version 2.1.1 Index]