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
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.