predict.arima {PivotalR} | R Documentation |
Forecast from models fit by linlk{madlib.arima}
## S3 method for class 'arima.css.madlib' predict(object, n.ahead = 1, ...)
object |
The result of |
n.ahead |
The number of steps ahead for which prediction is required. |
... |
Arguments passed to or from other methods, not implemented yet. |
A db.table
object, which points to a table that
contains the forecasted values. The table has two columns: steps_ahead
and forecast_value. One can use the function lk
to look at the values.
Author: Predictive Analytics Team at Pivotal Inc.
Maintainer: Frank McQuillan, Pivotal Inc. fmcquillan@pivotal.io
madlib.arima
fits ARIMA model to a time series.
## Not run: ## Please see the examples in madlib.arima doc. ## End(Not run)