Can you please help me how to write the codes? Let's say I have an ARIMA model (2,0,1) and the coefficients are as below: AR1=0.5 AR2=0.8 MA1=3.5 I want to generate the forecast with confidence level for 0.5, 0.7, and 0.9, can the below codes work? proc arima data=mydata; identify var=hist; estimate ar=0.5 0.8 ma=3.5 noest; forecast id=date interval=month lead=12 alpha=0.5 out=myoutput; run; Thank you.
... View more
I want to do some simulation on ARIMA model by changing the confidence level from 0.1 to 99.9. I have a defined coefficient or parameter estimation for each of parameters. How can I use PROC ARIMA or PROC FORECAST to do this? For example, I want to do simulation for ARIMA (4,0,1) and I already have coefficients for AR1-AR4 along with MA1. I just want to change my confidence level to generate different lower and upper value. Thank you.
... View more
Hi, I have the same issue, but there is no .locator file on my server. I have checked if it might be hidden but found out that it does not exist. Is there anyone have a suggestion for what should I do to fix this error and then be able to start SAS cache locator service?
... View more
I have the same issue, but there is no .locator file on my server. I have checked if it might be hidden but found out that it does not exist. What should I do to fix this error and start SAS cache locator service?
... View more