Learn R Programming

AutoModel (version 0.4.9)

assumptions_check: Multiple Regression Assumption Checking

Description

Multiple Regression Assumption Checking

Usage

assumptions_check(model)

Arguments

model
A lm model object. run_model automatically calls this function for the model with all blocks of predictors included.

Details

Creates objects related to multiple regression assumption checking. These objects are used by model_output to produce readable output.

Examples

Run this code
freeny_model_formulas <- create_formula_objects("y", c("lag.quarterly.revenue")
, c("price.index"))
freeny_models <- create_model_objects(freeny_model_formulas,
dataset = freeny)
freeny_model <- freeny_models[[length(freeny_models)]]
assumptions_check(freeny_model)

Run the code above in your browser using DataLab