September 2019
Beginner to intermediate
346 pages
7h 35m
English
Let's produce a similar output to Proc Means using the same By and Class groups:
Proc Summary Data = Customer_X;By Class;Class Height;Var Basketball;Output Out=Test N=n Mean=mean STD=stdev Min=min Max=max;Run;Proc Print Data=_LAST_ (Drop = _TYPE_ Rename=(_FREQ_=Nobs)) Noobs;Where Height ne "";Run;
While printing this out, we have tweaked the output to align it with the output of Proc Means By:

Read now
Unlock full access