powered by
Construct a single row summary of the ARIMA model.
# S3 method for ARIMA glance(x, ...)
A one row tibble summarising the model's fit.
A data frame with 1 row, with columns:
The unbiased variance of residuals. Calculated as sum(residuals^2) / (num_observations - num_pararameters + 1)
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
model or other R object to convert to single-row data frame
other arguments passed to methods
USAccDeaths %>% as_tsibble() %>% model(arima = ARIMA(log(value) ~ pdq(0, 1, 1) + PDQ(0, 1, 1))) %>% glance()
Run the code above in your browser using DataLab