Dear All,
I have been working with some time-series data (please refer to the attached spreadsheet). I utilized the code below to fit an ARMA(1,2) model to the Y series. However, upon using arimasoc, it's evident from the output table that the ARMA(1,2) model yields different log-likelihood and information criteria values.
I suspect that there might be an error on my end, or perhaps the two commands employ different convergence techniques. Could you please assist me in identifying the discrepancy, or advise if there are default options I should utilize to ensure consistency in the results obtained from the two commands? Thank you for your assistance. (The code is provided below.)
I have been working with some time-series data (please refer to the attached spreadsheet). I utilized the code below to fit an ARMA(1,2) model to the Y series. However, upon using arimasoc, it's evident from the output table that the ARMA(1,2) model yields different log-likelihood and information criteria values.
I suspect that there might be an error on my end, or perhaps the two commands employ different convergence techniques. Could you please assist me in identifying the discrepancy, or advise if there are default options I should utilize to ensure consistency in the results obtained from the two commands? Thank you for your assistance. (The code is provided below.)
Code:
clear gen Time = mofd(Date) format Time %tmMonYY drop Date gen t = _n tsset t arima Y, ar(1) ma(2) estat ic arimasoc Y, maxar(2) maxma(2)
Comment