Skip to contents

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 I from as-is formula calls

Examples

library(modelsummary)
dat <- mtcars
dat$horse_power <- dat$hp
mod <- lm(mpg ~ horse_power + factor(cyl), dat)
modelsummary(mod, coef_rename = coef_rename)