fit_model: Fit and predict in a single function.

Description Usage Arguments Examples

Description

Fit and predict in a single function.

Usage

1
2
3
4
5
6
7
8
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

1
2
3
data("yields", package="manymodelr")
fit_model(yields,"height","weight","lm")
fit_model(yields, "weight","height + I(yield)**2","lm")

manymodelr documentation built on Nov. 15, 2021, 5:07 p.m.