tidy_try: Tidy Model Results and Filter to Relevant Coefficients

View source: R/tidy_try.R

tidy_tryR Documentation

Tidy Model Results and Filter to Relevant Coefficients

Description

Tidy function that returns a tidy data.frame of model results and allows filtering to relevant coefficients. The function will attempt to tidy model objects even when they do not have a tidy method available. For best results, first load the broom package via library(broom).

Usage

tidy_try(fit, term = FALSE)

Arguments

fit

A model fit, as returned by a modeling function like lm, glm, or estimatr::lm_robust.

term

A character vector of the terms that represent quantities of interest, i.e., "Z". If FALSE, return the first non-intercept term; if TRUE return all terms.

Value

A data.frame with coefficient estimates and associated statistics.

Examples


fit <- lm(mpg ~ hp + disp + cyl, data = mtcars)

tidy_try(fit)


graemeblair/DeclareDesign documentation built on April 13, 2024, 4:30 p.m.