@signaflo Hi
Sorry to bother you.
I run a Main.java according to your Wiki, the program can run.However, after I have checked the results, I found something strange: the prediction results after 2013-04-01 are all too small compared to before, so I want to assure if there is some problem in my Main.java.Below I will paste my Main.java and results so that you can better check.
Here is the Main.java:public class Main2 {
public static void main(String[] args){
TimeSeries timeSeries = TestData.debitcards;
ArimaOrder modelOrder = ArimaOrder.order(2, 4, 6, 0, 1, 1);
Arima model = Arima.model(timeSeries, modelOrder);
System.out.println(model.aic()); // Get and display the model AIC
Forecast forecast = model.forecast(12);
System.out.println(forecast);
}
The order of the Arima model is very strange. I would expect some wacky results with 4 differences. In the example, I use an order of (0, 1, 1, 0, 1, 1), but I see you're using (2, 4, 6, 0, 1, 1).
@signaflo Hi Sorry to bother you. I run a Main.java according to your Wiki, the program can run.However, after I have checked the results, I found something strange: the prediction results after 2013-04-01 are all too small compared to before, so I want to assure if there is some problem in my Main.java.Below I will paste my Main.java and results so that you can better check.
Here is the Main.java:
public class Main2 {
}
`