September 2019
Beginner to intermediate
346 pages
7h 35m
English
For generating the Proc Means of basketball by Height, we specified that we wanted the Means statistic but still got the number of observations and the minimum, maximum, and standard deviation in the output. In the rest of the Proc Tabulate outputs discussed till now, we have seen the reporting of the number of observations and the sum of observations. We can use the following code to specify the statistics required:
Proc Tabulate Data=Dealership; Class Car; Var Avg_Price; Table Avg_Price*Car*(Sum Mean StdDev);Run;
This produces the following output:

The parentheses used in the code to produce this output was done to ...
Read now
Unlock full access