Examples for 'broom::tidy.aareg'


Tidy a(n) aareg object

Aliases: tidy.aareg aareg_tidiers

Keywords:

### ** Examples


# feel free to ignore the following line—it allows {broom} to supply 
# examples without requiring the model-supplying package to be installed.
if (requireNamespace("survival", quietly = TRUE)) {

# load libraries for models and data
library(survival)

# fit model
afit <- aareg(
  Surv(time, status) ~ age + sex + ph.ecog,
  data = lung,
  dfbeta = TRUE
)

# summarize model fit with tidiers
tidy(afit)

}
# A tibble: 4 × 7
  term        estimate  statistic std.error robust.se statistic.z  p.value
  <chr>          <dbl>      <dbl>     <dbl>     <dbl>       <dbl>    <dbl>
1 Intercept  0.00505    0.00587   0.00474   0.00477          1.23 0.219   
2 age        0.0000401  0.0000715 0.0000723 0.0000700        1.02 0.307   
3 sex       -0.00316   -0.00403   0.00122   0.00123         -3.28 0.00103 
4 ph.ecog    0.00301    0.00367   0.00102   0.00102          3.62 0.000299

[Package broom version 0.8.0 Index]