Construct a single row summary of the ARIMA model.
# S3 method for class 'ARIMA'
glance(x, ...)
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
Akaike information criterion, corrected for small sample sizes
Bayesian information criterion
The model's characteristic roots
A one row tibble summarising the model's fit.
USAccDeaths %>%
as_tsibble() %>%
model(arima = ARIMA(log(value) ~ pdq(0, 1, 1) + PDQ(0, 1, 1))) %>%
glance()
#> # A tibble: 1 × 8
#> .model sigma2 log_lik AIC AICc BIC ar_roots ma_roots
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <list> <list>
#> 1 arima 0.00138 109. -213. -212. -206. <cpl [0]> <cpl [13]>