September 2019
Beginner to intermediate
346 pages
7h 35m
English
Let's revisit a Proc Means example we looked at in Chapter 4, Power of Statistics, Reporting, Transforming Procedures, and Functions. We used the following Customer_X dataset:

Let's produce the means of the height of the Basketball players for the overall dataset and the two classes of the Height variable.
To produce the overall mean, we will run the following code:
Proc Means Data=Customer_X; Var Basketball;Run;
This will give the following table as output:

To generate the means for the various ...
Read now
Unlock full access