R broom
broom is a package for regression summaries.
Contents
Installation
Install the broom package.
install.packages('broom')
Usage
The primary function of the broom library is tidy, which is effectively an updated version of summary. It creates a tibble.
library(broom) tidy(mod)
Also available is glance, which outputs a single-row summary of model diagnostics.
