build_model_q | R Documentation |
build_model_q
allows you to incrementally add terms to a linear
regression model. Given a list of names of variables at each step, this
function will run a series of models, adding the terms for each block
incrementally to "build up" to a final model including all the terms.
build_model_q(dv, blocks = NULL, data = NULL, opts = NULL, model = "lm")
dv |
String of the variable name to be used as the dependent variable. |
blocks |
List of variable names (or interaction terms) to add for each block. Each list element should be a single string with terms for that block. Variables from previous blocks will be included with each subsequent block, so they do not need to be repeated. |
data |
An optional data frame containing the variables in the model. If
not found in |
opts |
List of arguments to be passed to the model function. |
model |
The type of model to use; supports 'lm', 'aov', and 'glm'. |
Note that in most cases it is easier to use build_model
and
pass variable names in directly instead of strings of variable names.
build_model_q
uses standard evaluation in cases where such evaluation
is easier.
Note: Cases with missing data are dropped based on the final model that includes all the relevant terms. This ensures that all the models are tested on the same number of cases.
A named list with the following elements:
formulas | A list of the regression formulas used for each block. |
models | A list of all regression models. |
build_model
# 2 blocks: Petal.Length; Petal.Length + Petal.Width
model1 <- build_model_q('Sepal.Length', list('Petal.Length + Petal.Width'),
data=iris, model='lm')
summary(model1)
coef(model1)
# 2 blocks: Species; Species + Petal.Length + Petal.Width + Petal.Length:Petal.Width
model2 <- build_model_q('Sepal.Length', list('Species', 'Species + Petal.Length * Petal.Width'),
data=iris, model='lm')
summary(model2)
coef(model2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.