The only documentation I found was the following:
SAS Help Center: Croston’s Method
I'm using SAS 9.4, and was trying to see if there was a proc available, but I couldn't find it as an option in PROC FORECAST, PROC ESM, or PROC UCM.
Is it buried somewhere within there?
Hello @narnia649 ,
You do NOT need SAS VIYA.
You need the SAS High-Performance Forecasting product in SAS 9.4 with which the HPFxxxxx procedures are associated.
(I think you can take a license containing the SAS High-Performance Forecasting product apart from Forecast Server / Forecast Studio)
When submitting
proc setinit; run;
, you should see this line in the LOG-screen.
---SAS High-Performance Forecasting
Or just try :
proc hpf; run;
and the LOG will tell you if the concerned product is available at your site.
This being said, if you do not have PROC HPF, ... the basic Croston method is easy to program.
It's based on simple exponential smoothing (SES) ... twice :
- on the non-zero elements of the time series
- on the times between non-zero elements (intervals between demands) of the time series.
This is then used in a form of the constant model to predict the future demand.
See internet. Formula is easy!
Good luck,
Koen
Hello @narnia649 ,
You do NOT need SAS VIYA.
You need the SAS High-Performance Forecasting product in SAS 9.4 with which the HPFxxxxx procedures are associated.
(I think you can take a license containing the SAS High-Performance Forecasting product apart from Forecast Server / Forecast Studio)
When submitting
proc setinit; run;
, you should see this line in the LOG-screen.
---SAS High-Performance Forecasting
Or just try :
proc hpf; run;
and the LOG will tell you if the concerned product is available at your site.
This being said, if you do not have PROC HPF, ... the basic Croston method is easy to program.
It's based on simple exponential smoothing (SES) ... twice :
- on the non-zero elements of the time series
- on the times between non-zero elements (intervals between demands) of the time series.
This is then used in a form of the constant model to predict the future demand.
See internet. Formula is easy!
Good luck,
Koen
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.
Find more tutorials on the SAS Users YouTube channel.