Hi, experts! I have a trouble with proc Loess: my code is Proc LOESS data=work.pre_loess; ods output OutputStatistics=RESULTS_1; model Pre_Bl=Date / smooth=0.2 residual alpha=0.05 dfmethod=exact; by Code; run; And it throws an error: ERROR: Integer overflow on computing amount of memory required for confidence limit computation. Do you have any ideas?
... View more