Commands model:arima/train¶
[ALPHA] Creates Autoregressive Integrated Moving Average (ARIMA) Model from the specified time series values.
POST /v1/commands/¶
GET /v1/commands/:id¶
Request¶
Route
POST /v1/commands/
Body
name: | model:arima/train |
---|---|
arguments: | model : Model
timeseries_values : list
p : int32
d : int32
q : int32
include_intercept : bool (default=True)
method : unicode (default=css-cgd)
user_init_params : list (default=None)
|
Headers
Authorization: test_api_key_1
Content-type: application/json
Description
Given a time series, fits an non-seasonal Autoregressive Integrated Moving Average (ARIMA) model of order (p, d, q) where p represents the autoregression terms, d represents the order of differencing, and q represents the moving average error terms. If includeIntercept is true, the model is fitted with an intercept.
Response¶
Status
200 OK
Body
Returns information about the command. See the Response Body for Get Command here below. It is the same.