library(forecast)
<- auto.arima(WWWusage)
fit checkresiduals(fit)
Ljung-Box test
data: Residuals from ARIMA(1,1,1)
Q* = 7.8338, df = 8, p-value = 0.4499
Model df: 2. Total lags used: 10
1 March 2017
In what is now a roughly annual event, the forecast package has been updated on CRAN with a new version, this time 8.0.
A few of the more important new features are described below.
A common task when building forecasting models is to check that the residuals satisfy some assumptions (that they are uncorrelated, normally distributed, etc.). The new function checkresiduals
makes this very easy: it produces a time plot, an ACF, a histogram with super-imposed normal curve, and does a Ljung-Box test on the residuals with appropriate number of lags and degrees of freedom.
Ljung-Box test
data: Residuals from ARIMA(1,1,1)
Q* = 7.8338, df = 8, p-value = 0.4499
Model df: 2. Total lags used: 10
This should work for all the modelling functions in the package, as well as some of the time series modelling functions in the stats
package.
Usually, residuals are computed as the difference between observations and the corresponding one-step forecasts. But for some models, residuals are computed differently; for example, a multiplicative ETS model or a model with a Box-Cox transformation. So the residuals()
function now has an additional argument to deal with this situation.
“Innovation residuals”” correspond to the white noise process that drives the evolution of the time series model. “Response residuals” are the difference between the observations and the fitted values (as with GLMs). For homoscedastic models, the innovation residuals and the one-step response residuals are identical. “Regression residuals” are also available for regression models with ARIMA errors, and are equal to the original data minus the effect of the regression variables. If there are no regression variables, the errors will be identical to the original series (possibly adjusted to have zero mean).
The geom_histogram()
function in the ggplot2
package is nice, but it does not have a good default binwidth. So I added the gghistogram
function which provides a quick histogram with good defaults. You can also overlay a normal density curve or a kernel density estimate.
The ggseasonplot
function is useful for studying seasonal patterns and how they change over time. It now has a polar
argument to create graphs like this.
I often want to add a time series line to an existing plot. Base graphics has line()
which works well when a time series is passed as an argument. So I added autolayer
which is similar (but more general). It is an S3 method like autoplot
, and adds a layer to an existing ggplot
object. autolayer
will eventually form part of the next release of ggplot2
, but for now it is available in the forecast
package. There are methods provided for ts
and forecast
objects:
The tsCV
and CVar
functions have been added. These were discussed in a previous post.
The baggedETS
function has been added, which implements the procedure discussed in Bergmeir et al (2016) for bagging ETS forecasts.
I’ve long found it annoying that head
and tail
do not work on multiple time series. So I added some functions to the package so they now work.
The pipe operator from the magrittr
package is now imported. So you don’t need to load the magrittr
package to use it.
There are now no packages that are loaded with forecast
– everything required is imported. This makes the start up much cleaner (no more annoying messages from all those packages being loaded). Instead, some random tips are occasionally printed when you load the forecast package (much like ggplot2
does).
There is quite a bit more — see the Changelog for a list.