View source: R/formula_utils.R
substitute_formula_vars | R Documentation |
Replace variables in formula with sum of other variables
substitute_formula_vars(
f,
replacements,
simplify = FALSE,
env = parent.frame()
)
f |
A model formula. |
replacements |
A named list. The names of |
simplify |
Logical, default is FALSE. Determines whether the formula should be expanded and simplified before output or not. |
env |
The environment for the output formula. |
model formula
Daniel Lupp and Øyvind Langsrud
f <- ~b + a*c + b:d
substitute_formula_vars(f, list(a = c("hello", "world", "b"),
b = c("Q1", "Q2")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.