BookmarkSubscribeRSS Feed
djkasdf
Calcite | Level 5
data elvennine;
infile 'J:t11-4 trade employees.txt';
input emp;
run;

proc arima data=elvennine;
identify var=emp(1,12);
estimate q=(1)(12) noconstant printall plot;
forecast lead=12 out=pred ;
run;

I am wondering what do I add to the forecast statement so it will give me a 99% pred interval, instead of just the standard 9 % confidence one
1 REPLY 1
MichelleHomes
Meteorite | Level 14
Hi There,

The default is 95% confidence intervals. To specify an alternative confidence interval you can set the alpha option to your significance level e.g. alpha=0.01...

proc arima data=elvennine;
identify var=emp(1,12);
estimate q=(1)(12) noconstant printall plot;
forecast lead=12 out=pred alpha=0.01;
run;

Check out the PROC ARIMA syntax at http://support.sas.com/documentation/cdl/en/etsug/63348/HTML/default/viewer.htm#etsug_arima_sect024....

Hope this is what you were after.

Cheers,
Michelle
//Contact me to learn how Metacoda software can help keep your SAS platform secure - https://www.metacoda.com

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 2941 views
  • 0 likes
  • 2 in conversation