Last chance! 50% off unlimited learning
Sale ends in
Add a local linear trend model to a state specification.
The local linear trend model assumes that both the mean and the slope of the
trend follow random walks. The equation for the mean is
AddLocalLinearTrend(
state.specification = NULL,
y,
level.sigma.prior = NULL,
slope.sigma.prior = NULL,
initial.level.prior = NULL,
initial.slope.prior = NULL,
sdy,
initial.y)
A list of state components that you wish to add to. If omitted, an empty list will be assumed.
The time series to be modeled, as a numeric vector.
An object created by
SdPrior
describing the prior distribution for
the standard deviation of the level component.
An object created by
SdPrior
describing the prior distribution of
the standard deviation of the slope component.
An object created by
NormalPrior
describing the initial distribution
of the level portion of the initial state vector.
An object created by
NormalPrior
describing the prior distribution
for the slope portion of the initial state vector.
The standard deviation of the series to be modeled. This
will be ignored if y
is provided, or if all the required
prior distributions are supplied directly.
The initial value of the series being modeled. This will be
ignored if y
is provided, or if the priors for the initial
state are all provided directly.
Returns a list with the elements necessary to specify a local linear trend state model.
Harvey (1990), "Forecasting, structural time series, and the Kalman filter", Cambridge University Press.
Durbin and Koopman (2001), "Time series analysis by state space methods", Oxford University Press.
# NOT RUN {
data(AirPassengers)
y <- log(AirPassengers)
ss <- AddLocalLinearTrend(list(), y)
ss <- AddSeasonal(ss, y, nseasons = 12)
model <- bsts(y, state.specification = ss, niter = 500)
pred <- predict(model, horizon = 12, burn = 100)
plot(pred)
# }
Run the code above in your browser using DataLab