Chapter Contents |
Previous |
Next |
The UNIVARIATE Procedure |
Procedure features: |
| |||||
Other features: |
| |||||
Data set: | SCORE |
Program |
options nodate pageno=1 linesize=80 pagesize=60;
proc univariate data=score noprint; |
var test1 test2; |
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 College Tests'; title2 'Output Data Set from PROC UNIVARIATE'; run; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.