Checks if a glance
method exits for a given object, either in {broom}
or in
{broom.mixed}
. If it does, return the model summary dataframe, if not, return
a NULL
. In this case, you can try the glance_performance()
function.
Arguments
- x
model or other R object to convert to single-row data frame
- ...
other arguments passed to methods
Examples
set.seed(123)
lm.mod <- lm(Sepal.Length ~ Species, iris)
broomExtra::glance(lm.mod)
#> # A tibble: 1 × 12
#> r.squared adj.r.squa…¹ sigma stati…² p.value df logLik AIC BIC devia…³
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 0.619 0.614 0.515 119. 1.67e-31 2 -112. 231. 243. 39.0
#> # … with 2 more variables: df.residual <int>, nobs <int>, and abbreviated
#> # variable names ¹adj.r.squared, ²statistic, ³deviance