Tidy the parsed model results
Usage
# S3 method for class 'pm_regression'
tidy(x, ...)Examples
pm <- parse_model(lm(mpg ~ wt, data = mtcars))
tidy(pm)
#> # A tibble: 2 × 2
#> term estimate
#> <chr> <dbl>
#> 1 (Intercept) 37.3
#> 2 wt -5.34
