For example, the following statements create an output data set that is named PCTLS that contains the 20th and 40th percentiles of the analysis variables Test1 and Test2: proc univariate data=score; ...
For example: proc univariate data=score; histogram final / normal; inset mean std normal(ad adpval); run; The MEAN and STD keywords display the sample mean and standard deviation of FINAL. The NORMAL ...