glance.GLARMA {fableCount} | R Documentation |
Construct a single row summary of the GLARMA model.
## S3 method for class 'GLARMA'
glance(x, ...)
x |
model or other R object to convert to single-row data frame |
... |
other arguments passed to methods |
A data frame with 1 row, with columns:
The unbiased variance of residuals. Calculated as 'sum(residuals^2) / (num_observations - num_pararameters + 1)'
The log-likelihood
Akaike information criterion
A one row tibble summarising the model's fit.
tsibbledata::aus_production |>
fabletools::model(manual_ing = GLARMA(Beer ~ pq(1,1))) |>
dplyr::select(manual_ing) |>
glance()