coef_rename | R Documentation |
A convenience function which can be passed to the coef_rename
argument of
the modelsummary
function.
coef_rename(
x,
factor = TRUE,
factor_name = TRUE,
poly = TRUE,
backticks = TRUE,
titlecase = TRUE,
underscore = TRUE,
asis = TRUE
)
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 |
poly |
boolean remove the "poly()" label and function arguments |
backticks |
boolean remove backticks |
titlecase |
boolean convert to title case |
underscore |
boolean replace underscores by spaces |
asis |
boolean remove the |
library(modelsummary) dat <- mtcars dat$horse_power <- dat$hp mod <- lm(mpg ~ horse_power + factor(cyl), dat) modelsummary(mod, coef_rename = coef_rename)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.