Do I need to differentiate ARIMA model input data?
1 回表示 (過去 30 日間)
古いコメントを表示
If my ARIMA model is (1,1,1), do I need to differentiate the data before inserting it into the model?
sys = arima(1,1,1);
Md1 = estimate(sys,data); % Model 1
Md2 = estimate(sys,diff(data)); % Model 2
Which option is correct, Model 1 or Model 2?
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Conditional Mean Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!