formulas | R Documentation |
formulas()
creates a list of two-sided formulas by merging a
unique left-hand side to a list of right-hand sides.
formulas(.response, ...)
formulae(.response, ...)
.response |
A one-sided formula used as the left-hand side of all resulting formulas. |
... |
List of formulas whose right-hand sides will be merged
to |
# Provide named arguments to create a named list of formulas:
models <- formulas(~lhs,
additive = ~var1 + var2,
interaction = ~var1 * var2
)
models$additive
# The formulas are created sequentially, so that you can refer to
# previously created formulas:
formulas(~lhs,
linear = ~var1 + var2,
hierarchical = add_predictors(linear, ~(1 | group))
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.