Aliases: glance.speedlm
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("speedglm", quietly = TRUE)) { # load modeling library library(speedglm) # fit model mod <- speedlm(mpg ~ wt + qsec, data = mtcars, fitted = TRUE) # summarize model fit with tidiers tidy(mod) glance(mod) augment(mod) }