Learn R Programming

olsrr (version 0.5.1)

ols_step_all_possible_betas: All possible regression variable coefficients

Description

Returns the coefficients for each variable from each model.

Usage

ols_step_all_possible_betas(object, ...)

Arguments

object

An object of class lm.

...

Other arguments.

Value

ols_step_all_possible_betas returns a tibble containing:

model_index

model number

predictor

predictor

beta_coef

coefficient for the predictor

Examples

Run this code
# NOT RUN {
model <- lm(mpg ~ disp + hp + wt, data = mtcars)
ols_step_all_possible_betas(model)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab