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
Rick_SAS
SAS Super FREQ

Since no one has responded with an analytical method, I suggest using a bootstrap to compute the CIs. For time series, here are some references 

- the stationary bootstrap

- the moving block bootstrap

 

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

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