Commands model:arima/predict¶
[ALPHA] Forecasts future periods using ARIMA.
POST /v1/commands/¶
GET /v1/commands/:id¶
Request¶
Route
POST /v1/commands/
Body
name: | model:arima/predict |
---|---|
arguments: | model : Model
future_periods : int32
timeseries_values : list (default=None)
|
Headers
Authorization: test_api_key_1
Content-type: application/json
Description
Provided fitted values of the time series as 1-step ahead forecasts, based on current model parameters, then provide future periods of forecast. We assume AR terms prior to the start of the series are equal to the model’s intercept term (or 0.0, if fit without an intercept term). Meanwhile, MA terms prior to the start are assumed to be 0.0. If there is differencing, the first d terms come from the original series.
Response¶
Status
200 OK
Body
Returns information about the command. See the Response Body for Get Command here below. It is the same.