fit_model {manymodelr} | R Documentation |
Fit and predict in a single function.
Description
Fit and predict in a single function.
Usage
fit_model(
df = NULL,
yname = NULL,
xname = NULL,
modeltype = NULL,
drop_non_numeric = FALSE,
...
)
Arguments
df |
A data.frame object |
yname |
The outcome variable |
xname |
The predictor variable(s) |
modeltype |
A character specifying the model type e.g lm for linear model |
drop_non_numeric |
Should non numeric columns be dropped? Defaults to FALSE |
... |
Other arguments to specific model types. |
Examples
data("yields", package="manymodelr")
fit_model(yields,"height","weight","lm")
fit_model(yields, "weight","height + I(yield)**2","lm")
[Package manymodelr version 0.3.7 Index]