public interface Model
| Modifier and Type | Method and Description |
|---|---|
TimeSeries |
fittedSeries()
Get the model fitted values, which are in-sample one-step ahead forecasts.
|
default Forecast |
forecast(int steps)
Create a new forecast for the given number of steps ahead with a default α significance level of 0.05.
|
Forecast |
forecast(int steps,
double alpha)
Produce a forecast from this model up to the given number of steps ahead.
|
TimeSeries |
observations()
Get the series of observations.
|
default TimeSeries |
predictionErrors()
Get the model prediction errors, the difference between the observed values and the model fitted values.
|
Forecast forecast(int steps, double alpha)
steps - the number of time periods ahead to forecast.alpha - the significance level to use for the prediction interval.default Forecast forecast(int steps)
steps - the number of time periods ahead to forecast.TimeSeries observations()
TimeSeries fittedSeries()
default TimeSeries predictionErrors()