Hello,
I am running several ARIMA models and I want to test the equivalence of the coefficients with the test command. However, I get the following error:
first was estimated with a nonstandard vce (opg) where "first" is the name of my first model. To be clear, here is the code I am running.
quietly arima lmp d1.lp if fp==1, arima(1,0,2)
estimates store first
quietly arima lmp d1.lp if sp==1, arima(2,0,0)
estimates store second
quietly arima lmp d1.lp if tp==1, arima(1,0,0)
estimates store third
quietly arima lmp d1.lp, arima(1,0,2)
estimates store whole
suest first second third whole
Thanks....Any substitutes if it doesn't work?
Joshua
I am running several ARIMA models and I want to test the equivalence of the coefficients with the test command. However, I get the following error:
first was estimated with a nonstandard vce (opg) where "first" is the name of my first model. To be clear, here is the code I am running.
quietly arima lmp d1.lp if fp==1, arima(1,0,2)
estimates store first
quietly arima lmp d1.lp if sp==1, arima(2,0,0)
estimates store second
quietly arima lmp d1.lp if tp==1, arima(1,0,0)
estimates store third
quietly arima lmp d1.lp, arima(1,0,2)
estimates store whole
suest first second third whole
Thanks....Any substitutes if it doesn't work?
Joshua
Comment