predict.bsts | R Documentation |
Generate draws from the posterior predictive distribution
of a bsts
object.
## S3 method for class 'bsts'
predict(object,
horizon = 1,
newdata = NULL,
timestamps = NULL,
burn = SuggestBurn(.1, object),
na.action = na.exclude,
olddata = NULL,
olddata.timestamps = NULL,
trials.or.exposure = 1,
quantiles = c(.025, .975),
seed = NULL,
...)
object |
An object of class |
horizon |
An integer specifying the number of periods into the
future you wish to predict. If |
newdata |
a vector, matrix, or data frame containing the
predictor variables to use in making the prediction. This is only
required if |
timestamps |
A vector of time stamps (of the same type as the
timestamps used to fit |
burn |
An integer describing the number of MCMC
iterations in |
na.action |
A function determining what should be done with
missing values in |
olddata |
This is an optional component allowing predictions to
be made conditional on data other than the data used to fit the
model. If omitted, then it is assumed that forecasts are to be made
relative to the final observation in the training data. If
The value for
|
olddata.timestamps |
A set of timestamps corresponding to the
observations supplied in |
trials.or.exposure |
For logit or Poisson models, the number of
binomial trials (or the exposure time) to assume at each time point
in the forecast period. This can either be a scalar (if the number
of trials is to be the same for each time period), or it can be a
vector with length equal to |
quantiles |
A numeric vector of length 2 giving the lower and upper quantiles to use for the forecast interval estimate. |
seed |
An integer to use as the C++ random seed. If |
... |
This is a dummy argument included to match the signature
of the generic |
Samples from the posterior distribution of a Bayesian structural time series model. This function can be used either with or without contemporaneous predictor variables (in a time series regression).
If predictor variables are present, the regression coefficients are fixed (as opposed to time varying, though time varying coefficients might be added as state component). The predictors and response in the formula are contemporaneous, so if you want lags and differences you need to put them in the predictor matrix yourself.
If no predictor variables are used, then the model is an ordinary state space time series model.
Returns an object of class bsts.prediction
, which is a list
with the following components.
mean |
A vector giving the posterior mean of the prediction. |
interval |
A two (column/row?) matrix giving the upper and lower bounds of the 95 percent credible interval for the prediction. |
distribution |
A matrix of draws from the posterior predictive distribution. Each row in the matrix is one MCMC draw. Columns represent time. |
Steven L. Scott
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.
bsts
.
AddLocalLevel
.
AddLocalLinearTrend
.
AddSemilocalLinearTrend
.
# The number of MCMC draws in the following examples is artificially low.
## Making predictions when there is no regression component.
data(AirPassengers)
y <- log(AirPassengers)
ss <- AddLocalLinearTrend(list(), y)
ss <- AddSeasonal(ss, y, nseasons = 12)
model <- bsts(y, state.specification = ss, niter = 250)
pred <- predict(model, horizon = 12, burn = 100)
plot(pred)
## An example using the olddata argument.
full.pred <- pred
training <- window(y, end = c(1959, 12))
model <- bsts(training, state.specification = ss, niter = 250)
## Predict the next 12 months.
pred <- predict(model, horizon = 12)
## Compare the predictions to the actual data.
plot(pred)
lines(as.numeric(y, col = "red", lty = 2, lwd = 2))
## Predict the 12 months of 1961 based on the posterior distribution
## of the model fit to data through 1959, but with state filtered
## through 1960.
updated.pred <- predict(model, horizon = 12, olddata = y)
par(mfrow = c(1, 2))
plot(full.pred, ylim = c(4, 7))
plot(updated.pred, ylim = c(4, 7))
## Examples including a regression component.
##
data(iclaims)
training <- initial.claims[1:402, ]
holdout1 <- initial.claims[403:450, ]
holdout2 <- initial.claims[451:456, ]
## Not run:
## This example puts the total run time over 5 seconds, which is a CRAN
## violation.
ss <- AddLocalLinearTrend(list(), training$iclaimsNSA)
ss <- AddSeasonal(ss, training$iclaimsNSA, nseasons = 52)
## In real life you'd want more iterations...
model <- bsts(iclaimsNSA ~ ., state.specification = ss, data =
training, niter = 100)
## Predict the holdout set given the training set.
## This is really fast, because we can use saved state from the MCMC
## algorithm.
pred.full <- predict(model, newdata = rbind(holdout1, holdout2))
## Predict holdout 2, given training and holdout1.
## This is much slower because we need to re-filter the 'olddata' before
## simulating the predictions.
pred.update <- predict(model, newdata = holdout2,
olddata = rbind(training, holdout1))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.