Hello -
I will give it a try, but I'm pretty sure I'm missing the mark - in this example I'm using EXPAND to "smooth a pattern" with a moving average window of 5 observations:
proc expand data=sashelp.air out=out method=none;
id date;
convert air=predict / transformout=(movave 5);
run;
data plot;
set sashelp.air out;
by date;
run;
proc sgplot data=out;
series x=date y=air;
series x=date y=predict;
run;
It would be very helpful if you could an example (how does the data look like now? How would you like the results to look like?).
Thanks,
Udo