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; ...
output out=teststat mean=MeanTest1 MeanTest2 std=StdDeviationTest1 pctlpts=33.3 66 99.9 pctlpre=Test1_ Test2_ pctlname=Low ; run; proc print data=teststat noobs; title1 'Univariate Statistics for Two ...