Examples for 'broom::glance.speedlm'


Glance at a(n) speedlm object

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)

}

[Package broom version 0.8.0 Index]