Hi, I want to calculate winsorized means for quite many (several thousands) of class variables and later use these results in other procedures so I need to get them in data set. With the following code it works fine for small number of class variables, but if there are many, log and listing just gets too crowded. ods trace on ; ods output winsorizedmeans=means (keep= classvar mean rename=mean=winsorized_mean) ; proc univariate winsorized = 0.10 data=mydata; class classvar; var var1 ; run ; ods trace off ; Could anyone please suggest me what to do? I know how to change so that there is no listing output, but that doesn't solve huge log problem. Maybe I'm just doing it in too complicated way and there is easier way to get winsorized mean values? Thank you, Ieva
... View more