BookmarkSubscribeRSS Feed
Chrkoch93
Calcite | Level 5

We are using Proc ARIMA to estimate daily mortality using daily time series data from the previous 4 years. There are daily trends that we would like to be captured in our model, which is why we prefer to use daily time series data instead of monthly.

 

Our issue is that we want to present our daily estimates as monthly estimates. Is there a method we could use to sum our daily estimates and calculate a 95% confidence limit around those aggregates? 

Here is the code used to produce our daily estimates:

proc arima data=filename;
identify var=COUNT (1,365) 
crosscorr=monday  
crosscorr=tuesday
crosscorr=wednesday
crosscorr=thursday
crosscorr=friday
crosscorr=saturday
crosscorr=sunday
nlag=1000 stationarity=(adf=100);
run;
estimate p=(1 2 7 30)(365) q=(1)(7)(30)(365) nostable maxiter=250 method=ml;
run; 
forecast alpha=0.05 lead=366 interval=Day id=DATE;
run;
quit;

Thank you

1 REPLY 1
Ksharp
Super User
You should post it at Forecasting Forum. Since PROC ARIMMA is under SAS/ETS .

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!

New Learning Events in April

 

Join us for two new fee-based courses: Administrative Healthcare Data and SAS via Live Web Monday-Thursday, April 24-27 from 1:00 to 4:30 PM ET each day. And Administrative Healthcare Data and SAS: Hands-On Programming Workshop via Live Web on Friday, April 28 from 9:00 AM to 5:00 PM ET.

LEARN MORE

Discussion stats
  • 1 reply
  • 666 views
  • 1 like
  • 2 in conversation