Examples for 'broom::glance.svyolr'


Glance at a(n) svyolr object

Aliases: glance.svyolr

Keywords:

### ** Examples


if (requireNamespace("MASS", quietly = TRUE)) {

library(MASS)

fit <- polr(Sat ~ Infl + Type + Cont, weights = Freq, data = housing)

tidy(fit, exponentiate = TRUE, conf.int = TRUE)
glance(fit)

}
Attaching package: 'MASS'
The following object is masked from 'package:rcloud.support':

    select
Re-fitting to get Hessian
# A tibble: 1 × 7
    edf logLik   AIC   BIC deviance df.residual  nobs
  <int>  <dbl> <dbl> <dbl>    <dbl>       <int> <int>
1     8 -1740. 3495. 3539.    3479.        1673  1681

[Package broom version 0.8.0 Index]