%studio_hide_wrapper; 82 proc sort data=ctg.nestle_promos out=ctg.nestle_promos_sorted; 83 by Date; 84 run; NOTE: There were 23847 observations read from the data set CTG.NESTLE_PROMOS. NOTE: The data set CTG.NESTLE_PROMOS_SORTED has 23847 observations and 36 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds 85 86 proc hpfengine data = ctg.nestle_promos_sorted; 87 id Date interval=week; 88 forecast Net_Revenue; 89 run; WARNING: Insufficient observations to forecast the variable Net_Revenue. Forecast values set to missing. NOTE: Number of series processed: 1 NOTE: Number of forecasts requested: 1 NOTE: Number of forecasts failed: 1 NOTE: There were 23847 observations read from the data set CTG.NESTLE_PROMOS_SORTED. NOTE: The data set WORK.DATA10 has 143 observations and 2 variables. NOTE: PROCEDURE HPFENGINE used (Total process time): real time 0.01 seconds cpu time 0.02 seconds 90 91 92 93 %studio_hide_wrapper; 104 105