Aliases: tidy.regsubsets leaps_tidiers
Keywords:
### ** Examples # feel free to ignore the following lineāit allows {broom} to supply # examples without requiring the model-supplying package to be installed. if (requireNamespace("leaps", quietly = TRUE)) { # load libraries for models and data library(leaps) # fit model all_fits <- regsubsets(hp ~ ., mtcars) # summarize model fit with tidiers tidy(all_fits) }