Hi, I am generating a plot using proc loess as shown below. The output has extra titles I am trying to suppress (and have been successful partially using "ods noptitle"). Can someone advise how I can suppress these titles from my output (since this information is in the plot and is redundant)? Selected Smoothing Parameter: x Dependent Variable: xyz ods noptitle; ods select fitplot; proc loess data=test; model dependent = independent /interp=linear degree=1 select=AICC(presearch); run;
... View more