mlr: Build multiple linear regression model

Description Usage Arguments Examples

Description

Build multiple linear regression model

Usage

1
mlr(df, stepwise = TRUE)

Arguments

df
stepwise

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (df, stepwise = TRUE) 
{
    names <- names(df)
    ncols <- length(names)
    propname <- names[ncols]
    formula <- paste(propname, "~ .")
    model <- lm(formula, df)
    if (stepwise) 
        model <- step(model)
    plot_regr(fitted.values(model), fitted.values(model) + residuals(model))
    model
  }

conmolfields documentation built on May 2, 2019, 4:18 p.m.