fit_model | R Documentation |
Fit and predict in a single function.
fit_model(
df = NULL,
yname = NULL,
xname = NULL,
modeltype = NULL,
drop_non_numeric = FALSE,
...
)
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. |
data("yields", package="manymodelr")
fit_model(yields,"height","weight","lm")
fit_model(yields, "weight","height + I(yield)**2","lm")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.