Arima Model.Forecast Method
Definition
Namespace: Numerics.NET.Statistics.TimeSeriesAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.2.0
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.2.0
Overload List
| Forecast() | Returns the one step ahead forecast. |
| Forecast( | Returns the forecast for the specified time period. |
Forecast(Int32)
Returns the forecast for the specified time period.
public override Vector<double> Forecast(
int steps
)Parameters
- steps Int32
- The 0.0-based index of the time period.
Return Value
Vector<Double>The forecast value for the time series for the period with index steps.
Remarks
This method is available when the model is fitted or deployed.
It throws an InvalidOperationException if the model has not been fitted.
Exceptions
| Invalid | Thrown if the model has not been fitted. |