How broom works: tidy(), glance(), and augment()
mainbroom summarizes model information into tidy tibble()s using three primary verbs:
tidy(): Summarizes information about model components (e.g., regression coefficients). Each row represents an important component.glance(): Reports information about the entire model (e.g., goodness-of-fit measures). It returns a single-row tibble.augment(): Adds information about observations (e.g., fitted values, residuals) to the original dataset. New columns are prefixed with.to avoid overwriting existing data.